Converting Serial Month Number to Text

RLSSP

New Member
Joined
Nov 7, 2005
Messages
7
I have a column that has the employees hire date. For example in cell A3 I have the hire date of 12/1/05 and in the column next to it I just want it to have the hire month for reporting purposes. So I used the formula =Month(A3) this returns the serial number for the month correctly. 12.... So then I do a custom format with the mmmm so it will say the month name and the only thing it will do is say January.

What am I doing wrong
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try this

=TEXT(MONTH(A3),"MMMM")

Edit:

Sorry: should have been =TEXT(A3,"MMMM") as suggested by Oaktree
 
Upvote 0
Use the TEXT formula

=TEXT(A3, "mmmm") for January

or =TEXT(A3,"mmmm yyyy") for January 2005

You are formatting the number 12 as mmmm, which returns January.
 
Upvote 0
Hi RLSSP , Welcome To The Board,

In cell A1 01/01/2005 ( Example )

Copy this into A2

=TEXT(A1,"mmm/yyyy")

HTH :)

Russ
 
Upvote 0
......... or just put:

= A3

in A4, then custom format A4 as mmmm.
 
Upvote 0

Forum statistics

Threads
1,214,413
Messages
6,119,372
Members
448,888
Latest member
Arle8907

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top