Getting the month out

A

andy wilson

Hi,

In A1 i've got 31-dec-2005 as a date

I need to get the month as text into A6 ie dec

Any ideas?
 
S

Stephen

andy wilson said:
Hi,

In A1 i've got 31-dec-2005 as a date

I need to get the month as text into A6 ie dec

Any ideas?

=TEXT(A1,"mmm")
will give you Dec

Or
=TEXT(A1,"mmmm")
will give December
 
Top