How to display month in 2 digits?

  • Thread starter Thread starter Eric
  • Start date Start date
E

Eric

Does anyone have any suggestion on how to display month in 2 digits?
For example, MONTH(NOW()) is 5, but I would like to show 05.
Thanks in advance for any suggestions
Eric
 
Hi,

Formatting the cell with a custom format of 00 (That's zero - zero) seems to
work.

Mike
 
Thank you very much for suggestions.

I need to CONCATENATE a string like that
=CONCATENATE("This Month is: ",month(now())
Could you please give me any suggestions on how to set the format within
concatenate function - String?
This Month is 05
Thank you very much for any suggestions
Eric
 
="This Month is: "&TEXT(MONTH(TODAY()),"00")

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Another alternative:

="This Month is:"&Text(Today(),"mm")

Regards,
Fred.
 

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