Day formatting

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I need to be able to input a date say 11/05/1995 and find
out which day of the week it was. Can anyone help please.
I can be emailed on (e-mail address removed)
 
One way:


A1: 11/05/1995
B1: =A1

Format B1 with

Format/Cells/Number/Custom dddd

to display Sunday

alternatively, use a worksheet function:

B1: =TEXT(A1, "dddd")
 
Back
Top