View Full Version : Solved: Weekday from date
excelliot
01-05-2006, 05:29 AM
Is there is any way to find week day from date.
E.g. =wday(01-Jan-2006)
which will give result to Sunday
Bob Phillips
01-05-2006, 05:40 AM
Is there is any way to find week day from date.
E.g. =wday(01-Jan-2006)
which will give result to Sunday
=TEXT(A1,"dddd")
where A1 holds the date
TonyJollans
01-05-2006, 05:43 AM
There is a WEEKDAY function which returns a number (by default, Sunday = 1, etc.) but a beter way to do is just to format the date ...
=TEXT("01-Jan-2006","dddd") returns "Sunday"
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.