Extract month from a date in Excel

Solved
Margaux -  
 anso -
Hello,

I would like to know which formula I should use to achieve the following:

I have dates in one column:
A
01/01/2001
03/05/2002
09/11/2003
etc..

and I would like to display in the following columns:
B
January
May
November
...

C
2001
2002
2003
...

Thank you in advance for your advice because I have 1300 rows and I don't see myself typing everything by hand ;)

5 réponses

eric1708 Posted messages 112 Status Membre 128
 
If the date is in A1, then:

=CHOOSE(MONTH(A1);"January";"February";"March";"April";"May";"June";"July";"August";"September";"October";"November";"December")
127
baranov
 
Say the truth to people, it's not a function what you wrote, it's glitching :(
0
jinx
 
It works very well.
0