• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Extract month from date to display month name not month number

Hi Excel guys,

I have data in the form of date in a column. I want to extract month from that date. I could use month(cellnumber). It displays numeric no.

Say,
Cell A1 contains 18-Mar-16 in date format.
=month(A1) returns 3. But I want result to display as Mar instead of 3.
Is it possible?

Regards
M. Suresh
 
=Text(A1,"mmm") will return the short month name eg: Feb

If you want February
=TEXT(A1,"mmmm")

Or use mmmm as a custom number format
 
Back
Top