Month Name from a date

P

pablo bellissimo

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
 
V

Vergel Adriano

Pablo,

If you want the 3-letter month abbreviation:

=TEXT(A1, "mmm")

If you want to full month name:

=TEXT(A1, "mmmm")
 
D

Dave F

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

Dave
 
Top