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")
 
Hi
several ways:
1. To return a weekday number use: =WEEKDAY(A1)
2. To get the name of the day you can either:
- Format the cell with the custom format "DDDD"
- use the formula: =TEXT(A1,"DDDD")

for more about dates and times have a look at
http://www.cpearson.com/excel/datetime.htm
 

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