Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Grd Grd is offline
external usenet poster
 
Posts: 118
Default Extract the month name from a month

Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default Extract the month name from a month

Hi,

With numbers (1 - 12) in column A us this and drag down

=DATE(2010,A1,1)

Format these cells with a custom format of mmm


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Grd" wrote:

Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Extract the month name from a month

You could use the month column in the DATE function and then use the
TEXT function to extract just the 3 letter month as in:

=TEXT(DATE(0,A1,1),"mmm")

On Feb 3, 2:45*pm, Grd wrote:
Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 897
Default Extract the month name from a month

If there is just a number in a single cell, just format it to look
like a month name.

In Excel 2003, select the cell, press Ctrl+1, go to Number tab, click
"Custom" and in the Type box, enter "mmm" (without quotes).

--JP


On Feb 3, 2:45*pm, Grd wrote:
Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Extract the month name from a month

=TEXT(A1&"-10","mmm")


"Grd" wrote:

Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Extract the month name from a month

Another one...

A1 = a number from 1 to 12

=TEXT(A1*29,"mmm")

--
Biff
Microsoft Excel MVP


"Grd" wrote in message
...
Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see
Jan
instead of 1 and Jul instead of 7. Is there a formula for function for
this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Grd Grd is offline
external usenet poster
 
Posts: 118
Default Extract the month name from a month

This method works for me.
Tx

"Mike H" wrote:

Hi,

With numbers (1 - 12) in column A us this and drag down

=DATE(2010,A1,1)

Format these cells with a custom format of mmm


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Grd" wrote:

Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Grd Grd is offline
external usenet poster
 
Posts: 118
Default Extract the month name from a month

Hi,

I had to add "-2010" instead of just "-10" but that worked.

=TEXT(A1&"-2010","mmm")

tx
Grd

"Teethless mama" wrote:

=TEXT(A1&"-10","mmm")


"Grd" wrote:

Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Grd Grd is offline
external usenet poster
 
Posts: 118
Default Extract the month name from a month

Works too!

Tx
Grd

"T. Valko" wrote:

Another one...

A1 = a number from 1 to 12

=TEXT(A1*29,"mmm")

--
Biff
Microsoft Excel MVP


"Grd" wrote in message
...
Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see
Jan
instead of 1 and Jul instead of 7. Is there a formula for function for
this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd



.

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Grd Grd is offline
external usenet poster
 
Posts: 118
Default Extract the month name from a month

Thanks for the reply,

They all come out Jan. But the Ctrl+1 shortcut was great.

Tx
Grd

"JP" wrote:

If there is just a number in a single cell, just format it to look
like a month name.

In Excel 2003, select the cell, press Ctrl+1, go to Number tab, click
"Custom" and in the Type box, enter "mmm" (without quotes).

--JP


On Feb 3, 2:45 pm, Grd wrote:
Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to see Jan
instead of 1 and Jul instead of 7. Is there a formula for function for this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd


.



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 897
Default Extract the month name from a month

My bad. But it looks like others came in with the correct answer.

--JP

On Feb 3, 10:49*pm, Grd wrote:
Thanks for the reply,

They all come out Jan. But the Ctrl+1 shortcut was great.

Tx
Grd

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Extract the month name from a month

You're welcome!

--
Biff
Microsoft Excel MVP


"Grd" wrote in message
...
Works too!

Tx
Grd

"T. Valko" wrote:

Another one...

A1 = a number from 1 to 12

=TEXT(A1*29,"mmm")

--
Biff
Microsoft Excel MVP


"Grd" wrote in message
...
Hi there,

I have a month column with just a number like 1 , 7 etc. I'd like to
see
Jan
instead of 1 and Jul instead of 7. Is there a formula for function for
this.
There is only one number in a column at one time.

Any help would be greatly appreciated.

Tx

Grd



.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
extract the month Jim Excel Discussion (Misc queries) 3 August 18th 09 05:20 PM
Extract month from date Ken G. Excel Discussion (Misc queries) 2 November 1st 08 05:06 PM
Extract Month John Moore Excel Discussion (Misc queries) 3 June 18th 07 10:20 AM
How do I extract just the month kurt Excel Worksheet Functions 4 July 1st 05 09:41 PM
How to extract month number from month name PM Excel Discussion (Misc queries) 2 January 19th 05 03:07 PM


All times are GMT +1. The time now is 03:35 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"