Date Issue

  • Thread starter Thread starter Vic09
  • Start date Start date
V

Vic09

Using following formula in Excel 03,
=IF(MONTH(H2)=1,"January",IF(MONTH(H2)=2,"February",IF(MONTH(H2)=3,"March",IF(MONTH(H2)=4,"April",IF(MONTH(H2)=5,"May",IF(MONTH(H2)=6,"June",IF(MONTH(H2)=7,"July",0))))))),
however it doesn't work past July? Is this a limitation with Excel 03. I have
checked data format in relevant column etc. Any suggestions? Thanks
 
Try this:

=TEXT(H2,"mmmm")

Does that help?

Regards,

Ron Coderre
Microsoft MVP (Excel)
 
Excel 2003 has a 7 nested IF limit.

See Ron's suggestion for a much shorter formula.


Gord Dibben MS Excel MVP
 

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

Similar Threads

Conditional formating 3
year 2010 not working in IF 2
Nested IF Formula 5
Problem with SUMPRODUCT 6
Sumif Fails w Date as Text 13
dsum 4
Vlookup to insert num in mult. columns 8
Mapping strings to integers 5

Back
Top