weekday

M

monica

How do you get Excell 2000 to automatically show a weekday
based on a reference from a date cell? I did it about 6 or
7 years ago with an old version by subtracting a date
number from the current date (as a numeric value).
 
N

Niek Otten

If you want today (Aug 6, 2003) to be displayed as Wednesday, just
Format>Cells>Custom and use dddd as type.
If you require a number, put a WEEKDAY() function in another cell. Look in
Help for details: there are several weekday numbering systems.
 
T

Tom Ogilvy

Assume the date is in A1 and you are filling down starting in A2

=A1+CHOOSE(WEEKDAY(A1),1,1,1,1,1,3,2)

Regards,
Tom Ogilvy
 

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

Top