View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default convert date to name of month

Excel sees dates as numbers starting with a base date (January 1, 1900) as a
plain old number (1/1/1900 = 1) that is nicely formatted.

So when you look at 1, 2, 3, ...
it's like looking at:
1/1/1900, 1/2/1900, 1/3/1900, ...

And all of those belong to January of 1900.

So =text(a1,"mmmm") will return January for all these.



holly wrote:

By the way, I tried the =TEXT($B1,"mmmm") in cell C1 and it returned January
when it should have returned February because I had the date of 2/9 in cell
A1, and a 2 in cell B1.

"holly" wrote:

My spreadsheet:

A B Results
1/5/09 =IF(A1="","",MONTH(A1)) 1



In Column C, I need to write a formula that says =IF($B1=1,"January"...)
but my statement if FALSE, needs to be, IF($B1=2,"February" and so forth all
the way through the calendar. The false will be if a new IF formula.

I started with this,
=IF($B1=1,"January",IF($B1=2,"February",IF($B1=3," March")))

And all the way down the line to December, with the correct # of close
parens (12 of them) but I get an error. Do I need to keep typing in the "IF"
for a false statement? Help please :)


--

Dave Peterson