Forum Discussion
Reghunadh Parameswarannair
Feb 04, 2017Copper Contributor
for converting a number between 1 to 12 to the corresponding month
for eg, inorder to convert 2 to February or 9 to September, which function to be used?
7 Replies
- Detlef_LewinSilver Contributor
Hello
There are many solutions. Perhaps the shortest would be:
=TEXT(DATE(,A1,1);"MMMM")
- SergeiBaklanDiamond Contributor
Detlef, even shorter will be =TEXT(A1*28,"mmmm")
- Detlef_LewinSilver Contributor
Nice solution, Sergei. It also works with 29 and 30.