Month Name from a date

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

Guest

Hi All,
How can I get the month name from a full date?

Cell A1 contains 28/02/07 and all I want is for the cell value of B1 to be
February.

I know I can format the dd/mm/yy but when I put this in a pivot table it
lists each date individually.

The only solution I have is to do a vlookup to a range listing which month
number equals which month name.

Any suggestions gratefully received.

Thanks
 
Pablo,

If you want the 3-letter month abbreviation:

=TEXT(A1, "mmm")

If you want to full month name:

=TEXT(A1, "mmmm")
 
=Text(A1,"mmmm") assuming the date is in cell A1 will return the month
spelled out in full.

Dave
 

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