Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi, how do i convert a list of numbers to their parrallel months? eg.
1=january, 12-december |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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... "theE" wrote: hi, how do i convert a list of numbers to their parrallel months? eg. 1=january, 12-december |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=TEXT(DATE(1,A1,1),"mmmm")
or =DATE(1,A12,1) and format as mmmm -- David Biddulph "theE" wrote in message ... hi, how do i convert a list of numbers to their parrallel months? eg. 1=january, 12-december |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
A1 = a number from 1 to 12 =TEXT(A1*30,"mmmm") -- Biff Microsoft Excel MVP "theE" wrote in message ... hi, how do i convert a list of numbers to their parrallel months? eg. 1=january, 12-december |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
'beautiful' solution...
"T. Valko" wrote: Try this: A1 = a number from 1 to 12 =TEXT(A1*30,"mmmm") -- Biff Microsoft Excel MVP "theE" wrote in message ... hi, how do i convert a list of numbers to their parrallel months? eg. 1=january, 12-december |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks!
-- Biff Microsoft Excel MVP "Sheeloo" <="to" & CHAR(95) & "sheeloo" & CHAR(64) & "hotmail.com" wrote in message ... 'beautiful' solution... "T. Valko" wrote: Try this: A1 = a number from 1 to 12 =TEXT(A1*30,"mmmm") -- Biff Microsoft Excel MVP "theE" wrote in message ... hi, how do i convert a list of numbers to their parrallel months? eg. 1=january, 12-december |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way (assuming that A1 contains the number):
=CHOOSE(A1,"January","February") Complete the formula up to December. Joerg "theE" wrote in message ... hi, how do i convert a list of numbers to their parrallel months? eg. 1=january, 12-december |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for the help.
|
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I apply the formula to the rest of the row?
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
converting days to months | Excel Worksheet Functions | |||
Converting Numbers to Months | Excel Worksheet Functions | |||
Converting Text months to sortable Numbers or Dates | Excel Discussion (Misc queries) | |||
converting months to years and months??? | Excel Discussion (Misc queries) | |||
Converting months to years | Excel Worksheet Functions |