Date and Day in Excel

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

Guest

I have 12 Sheets, each representing each month of the year...Jan, feb......Dec.
I need Date and Day in 1st and 2nd colum of each sheet representing that
month.
Need to know how to formulate this...Thanks in advance for any help..
 
Hi
try the following formula to get the first day of the current year for
this montn:
=DATEVALUE("1-" &
RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND
("]",CELL("filename",A1),1)) & "-" & TEXT(TODAY(),"YYYY")

If you put this in cell A1 you could use the following formula in B1 to
get only the day:
=A1
and format this cell with the custom format
"DDD"
 
Thank You so much for your help.....

Frank Kabel said:
Hi
try the following formula to get the first day of the current year for
this montn:
=DATEVALUE("1-" &
RIGHT(CELL("filename",A1),LEN(CELL("filename",A1))-FIND
("]",CELL("filename",A1),1)) & "-" & TEXT(TODAY(),"YYYY")

If you put this in cell A1 you could use the following formula in B1 to
get only the day:
=A1
and format this cell with the custom format
"DDD"

--
Regards
Frank Kabel
Frankfurt, Germany

RizMomin said:
I have 12 Sheets, each representing each month of the year...Jan, feb......Dec.
I need Date and Day in 1st and 2nd colum of each sheet representing that
month.
Need to know how to formulate this...Thanks in advance for any help..
 

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