In Excel, look at a date field and return just the month..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm looking for an excel formula that looks at a cell containing a date and
returns just the month of the date.
 
Hi KC

here's some ideas for you

try
=MONTH(A1)

or

=A1
and then choose format / cell and in custom type
mmm
or type
mmmm

or
=text(A1, "mmm")
 
To get the month #, i.e., 1 for Jan, 6 for Jun, use

=MONTH(cell with date)

If you want a text representation, i.e,. Jan or January for the 1st month, use

=TEXT(cell with date,"mmm")
or
=TEXT(cell with date,"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

Back
Top