Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Formating - Date as Month In All Caps

Can Format/Cells/Number/Custom be used to make a date show the month name in
all caps?

I am using an HLOOKUP to drive several report fields which are based on the
first day of a month.

Rather than show the date in the mm/dd/yyyy format, I have formated the cell
for mmmm which shows the date with the full month name formated as 'Proper'.
I would like to show the month name in all caps.

Current: A1 = 1/1/2006; Format displays as January - (Proper)
Would like: A1 = 1/1/2006, Format to display JANUARY - (All Caps)

Can not use a formula as users need to type the date in the cell in order to
create different scenarios.

Thanks in advance!

- - TomB - -
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Formating - Date as Month In All Caps

You have a cell (A1, say) with a date and you format it to show the name of
the month in proper case. But you want all capitals?
What has this to do with HLOOKUP?
If A1 displays Nov and F1:Q1 have: Jan, Feb,....Nov, Dec then
=VLOOKUP(MONTH(A1),E1:Q1,2,FALSE) is NOT going to result in Nov. You are
still passing a date with the reference to A1 no matter what it displays.
How about =INDEX(F1:Q1,MONTH(A1)) ? This will return Nov. The method can be
expanded to tables with more than 1 dimension.
Hope this makes sense to you.
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"TOMB" wrote in message
...
Can Format/Cells/Number/Custom be used to make a date show the month name
in
all caps?

I am using an HLOOKUP to drive several report fields which are based on
the
first day of a month.

Rather than show the date in the mm/dd/yyyy format, I have formated the
cell
for mmmm which shows the date with the full month name formated as
'Proper'.
I would like to show the month name in all caps.

Current: A1 = 1/1/2006; Format displays as January - (Proper)
Would like: A1 = 1/1/2006, Format to display JANUARY - (All Caps)

Can not use a formula as users need to type the date in the cell in order
to
create different scenarios.

Thanks in advance!

- - TomB - -



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Formating - Date as Month In All Caps

Try this:

=UPPER(TEXT(A1,"mmmm"))



"TOMB" wrote:

Can Format/Cells/Number/Custom be used to make a date show the month name in
all caps?

I am using an HLOOKUP to drive several report fields which are based on the
first day of a month.

Rather than show the date in the mm/dd/yyyy format, I have formated the cell
for mmmm which shows the date with the full month name formated as 'Proper'.
I would like to show the month name in all caps.

Current: A1 = 1/1/2006; Format displays as January - (Proper)
Would like: A1 = 1/1/2006, Format to display JANUARY - (All Caps)

Can not use a formula as users need to type the date in the cell in order to
create different scenarios.

Thanks in advance!

- - TomB - -

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Formating - Date as Month In All Caps

Thanks, but I can not use a formula in the cell. The users will be typing the
date directly into the cell.

I need to know whether (From MENU bar) Format/Cells/Number/Custom be used to
make a date show the month name in all caps?


"Teethless mama" wrote:

Try this:

=UPPER(TEXT(A1,"mmmm"))



"TOMB" wrote:

Can Format/Cells/Number/Custom be used to make a date show the month name in
all caps?

I am using an HLOOKUP to drive several report fields which are based on the
first day of a month.

Rather than show the date in the mm/dd/yyyy format, I have formated the cell
for mmmm which shows the date with the full month name formated as 'Proper'.
I would like to show the month name in all caps.

Current: A1 = 1/1/2006; Format displays as January - (Proper)
Would like: A1 = 1/1/2006, Format to display JANUARY - (All Caps)

Can not use a formula as users need to type the date in the cell in order to
create different scenarios.

Thanks in advance!

- - TomB - -

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Formating - Date as Month In All Caps

Thanks Bernard, and the HLookup really did not have much to do with the
quetion except to point out that the cell was being used to drive other
functions, and that the cell needed to be free of formulas. The end users
would be typing directly in the cell.

Design issues are limiting my ability to use a formula linked to another
cell to be used for input. That and I have a boss who really wanted it in
caps - - He will have to learn to live with disapointment I guess...

I was hoping to find out whether Format/Cells/Number/Custom offered a
solution simular to how one can change number formating with [RED].


"Bernard Liengme" wrote:

You have a cell (A1, say) with a date and you format it to show the name of
the month in proper case. But you want all capitals?
What has this to do with HLOOKUP?
If A1 displays Nov and F1:Q1 have: Jan, Feb,....Nov, Dec then
=VLOOKUP(MONTH(A1),E1:Q1,2,FALSE) is NOT going to result in Nov. You are
still passing a date with the reference to A1 no matter what it displays.
How about =INDEX(F1:Q1,MONTH(A1)) ? This will return Nov. The method can be
expanded to tables with more than 1 dimension.
Hope this makes sense to you.
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"TOMB" wrote in message
...
Can Format/Cells/Number/Custom be used to make a date show the month name
in
all caps?

I am using an HLOOKUP to drive several report fields which are based on
the
first day of a month.

Rather than show the date in the mm/dd/yyyy format, I have formated the
cell
for mmmm which shows the date with the full month name formated as
'Proper'.
I would like to show the month name in all caps.

Current: A1 = 1/1/2006; Format displays as January - (Proper)
Would like: A1 = 1/1/2006, Format to display JANUARY - (All Caps)

Can not use a formula as users need to type the date in the cell in order
to
create different scenarios.

Thanks in advance!

- - TomB - -






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 174
Default Formating - Date as Month In All Caps

Hi Tom,

I don't think there's a custom format way to do this.

One possibility is to use a font in your date cell that only shows CAPS.

Another alternative is to use just a text month in A1, e.g. just type in
NOVEMBER. Then for your HLOOKUPS use "1 "&A1 to give 1st November in the
current year

"TOMB" wrote:

Thanks Bernard, and the HLookup really did not have much to do with the
quetion except to point out that the cell was being used to drive other
functions, and that the cell needed to be free of formulas. The end users
would be typing directly in the cell.

Design issues are limiting my ability to use a formula linked to another
cell to be used for input. That and I have a boss who really wanted it in
caps - - He will have to learn to live with disapointment I guess...

I was hoping to find out whether Format/Cells/Number/Custom offered a
solution simular to how one can change number formating with [RED].


"Bernard Liengme" wrote:

You have a cell (A1, say) with a date and you format it to show the name of
the month in proper case. But you want all capitals?
What has this to do with HLOOKUP?
If A1 displays Nov and F1:Q1 have: Jan, Feb,....Nov, Dec then
=VLOOKUP(MONTH(A1),E1:Q1,2,FALSE) is NOT going to result in Nov. You are
still passing a date with the reference to A1 no matter what it displays.
How about =INDEX(F1:Q1,MONTH(A1)) ? This will return Nov. The method can be
expanded to tables with more than 1 dimension.
Hope this makes sense to you.
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"TOMB" wrote in message
...
Can Format/Cells/Number/Custom be used to make a date show the month name
in
all caps?

I am using an HLOOKUP to drive several report fields which are based on
the
first day of a month.

Rather than show the date in the mm/dd/yyyy format, I have formated the
cell
for mmmm which shows the date with the full month name formated as
'Proper'.
I would like to show the month name in all caps.

Current: A1 = 1/1/2006; Format displays as January - (Proper)
Would like: A1 = 1/1/2006, Format to display JANUARY - (All Caps)

Can not use a formula as users need to type the date in the cell in order
to
create different scenarios.

Thanks in advance!

- - TomB - -




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
How to convert a month to a quarter ...... Epinn New Users to Excel 26 May 3rd 23 07:45 PM
Month to date sales - reset in new month??? [email protected] Excel Worksheet Functions 2 November 26th 05 08:18 PM
extract the month of a date gireesh Excel Discussion (Misc queries) 11 November 23rd 05 06:10 PM
GETTING MONTH FROM A DATE [email protected] Excel Discussion (Misc queries) 8 October 6th 05 01:26 AM
HELP with this function Jay Excel Worksheet Functions 7 May 24th 05 06:45 PM


All times are GMT +1. The time now is 12:08 AM.

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

About Us

"It's about Microsoft Excel"