Day Of Week Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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 ?
 
A1 contains your date ......

=CHOOSE(WEEKDAY(A1),"Sun","Mon","Tue","Wed","Thu","Fri","Sat")
 
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 ?

=TEXT(A1,"dddd")
or use the WEEKDAY() function to return a serial number for the day in the
week
 
You could just format the cell using a custom format of dddd,
m/dd/yyyy.

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top