Display Month

  • Thread starter Thread starter Christine Wilso
  • Start date Start date
C

Christine Wilso

How do I format excel to just show the current month. I know that
TODAY() shows todays date dd/mm/yy, so how do I pick out just the
month? I would also like it to display the actual month such as
September rather than 09.
 
Hi,

The number of current month, you can get by:

=MONTH(TODAY())

and the name of the current month by:

=TEXT(TODAY(),"mmm")

(I'm not actually sure if the "mmm" part is correct with englis
regional settings, because the date formattings are local)

- Asse
 
How do I format excel to just show the current month. I know that
TODAY() shows todays date dd/mm/yy, so how do I pick out just the
month? I would also like it to display the actual month such as
September rather than 09.

Format/Cells/Number/Custom Type: mmmm

will display only the month, all spelled out.


--ron
 

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