MONTH Function in EXCEL

T

Tom

I know the MONTH function in EXCEL will return a number from a list of Month
Names, e.g. January = 1, February = 2, etc. But I have a list of numbers
that I would like to return the month name. Can it be done?
 
S

Shane Devenshire

Hi,

create a lookup table like
1 January
2 February
....

suppose you do this is in G1:H12

use the formula
=VLOOKUP(A1,G1:H12,2,FALSE)

where A1 contains the number.
 
J

JE McGimpsey

Tom said:
I know the MONTH function in EXCEL will return a number from a list of Month
Names, e.g. January = 1, February = 2, etc. But I have a list of numbers
that I would like to return the month name. Can it be done?

One way:

=TEXT(DATE(2000,A1,1),"mmmm")
 

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

Top