Day of date

  • Thread starter Thread starter Curt
  • Start date Start date
C

Curt

Is there a way to have excel display only the day of date or display month
day year in seperate cells. If either of these thing can happen it will solve
my problem. I want excel to continue to update with calendar as usual. Only
on when day is (x) then do this.
Thanks
 
hi
not sure if this is what you are after but...
year in a seperate cell???
=year(today())
month....in a seperate cell
=month(today())
which equals 2.
to display day.....
=day(today())
which will be 11, to display day of week....
=text(day(today()),"ddd")

if i got confused, post back

Regards
FSt1
 

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