G Guest May 23, 2006 #1 If I have a date like 1/22/2005, is there a formula that can tell me what day of the week that date is ?
If I have a date like 1/22/2005, is there a formula that can tell me what day of the week that date is ?
G Guest May 23, 2006 #3 A1 contains your date ...... =CHOOSE(WEEKDAY(A1),"Sun","Mon","Tue","Wed","Thu","Fri","Sat")
D David Biddulph May 23, 2006 #4 carl said: If I have a date like 1/22/2005, is there a formula that can tell me what day of the week that date is ? Click to expand... =TEXT(A1,"dddd") or use the WEEKDAY() function to return a serial number for the day in the week
carl said: If I have a date like 1/22/2005, is there a formula that can tell me what day of the week that date is ? Click to expand... =TEXT(A1,"dddd") or use the WEEKDAY() function to return a serial number for the day in the week
P Pete_UK May 23, 2006 #5 You could just format the cell using a custom format of dddd, m/dd/yyyy. Hope this helps. Pete