Display current month in alpha

P

Pen

I would like a monthly report to Display the current month in alpha
characters, e.g. "January" rather than "01".

Your help is much appreciated!

Pen
 
D

Douglas

What ever you use to display the month (yourmonth) use:

=format(yourmonth, "mmmm")

eg.The current month would be : =format(now(), "mmmm")
 
Top