A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Tim, simplify your formula to this, and it will work:
=TEXT(L2,"dddd")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
The following formula is not returning the correct day name for August. It works correctly for July dates.
=TEXT(DAY(L2),"dddd")
Where L2 is the cell with the date, for example 8/1/2018
For 8/1/2018, the result is incorrectly "Sunday". With date 7/31/2018, the result is correct as "Tuesday".
Any ideas what is happening?
Thanks for help.Tim
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Hi Tim, simplify your formula to this, and it will work:
=TEXT(L2,"dddd")
Answer accepted by question author
Great! I am glad that worked! If you don't have any more questions, feel free to choose a rating and have a great day!
Answer accepted by question author
Right formula is
=TEXT(L2,"dddd")
DAY argument needs to be removed.
=TEXT(DAY("8/1/2018","dddd")
=TEXT(1,"dddd")
is treated as =TEXT("1/1/1900","dddd")
Hence the answer is Sunday.
Thx for the explanation!
Cool! Thx