converting numbers to months

T

theE

hi, how do i convert a list of numbers to their parrallel months? eg.
1=january, 12-december
 
S

Sheeloo

There are many ways

1. If you have numbers in Col A starting at A1
enter this in B1
=Date(1,A1,1)
and format the column as
Custom|mmmm

This will show January, ... depending upon the number in A1

Or you can have
=LOOKUP(A1,{1,2,...12},{"January","February",...""December"})

Fill the missing numbers, months

or
you can use VLOOLKUP
=VLOOKUP(A1,Sheet2!A:B,2,False)

if you have numbers in Col A and month names in Col B of Sheet2

or...
 
J

Joerg Mochikun

One way (assuming that A1 contains the number):
=CHOOSE(A1,"January","February")

Complete the formula up to December.

Joerg
 

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

Top