Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Can I format a date in all caps?

So it would be MARCH 16, 2007, for example?

thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Can I format a date in all caps?

=UPPER(TEXT(TODAY(),"mmmm dd, yyy"))
--
Gary's Student


"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Can I format a date in all caps?

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY PASTESPECIAL
VALUES on the column..........."but" they are now TEXT, no longer dates as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Can I format a date in all caps?

This works great for today's date- actually I didn't explain quite right- can
I format so that whatever date I enter in the cell will show the month in all
caps?

thanks again~

"Gary''s Student" wrote:

=UPPER(TEXT(TODAY(),"mmmm dd, yyy"))
--
Gary's Student


"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Can I format a date in all caps?

So...does this mean there's no way to do it so that Excel still recognizes it
as a date?

thanks again~

"CLR" wrote:

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY PASTESPECIAL
VALUES on the column..........."but" they are now TEXT, no longer dates as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default Can I format a date in all caps?

Excel can convert date text to system dates. Try this:
=DATE(YEAR(A1),MONTH(A1),DAY(A1))
Where Cell A1 contains the text MARCH 17, 2007

"lamersn" wrote:

So...does this mean there's no way to do it so that Excel still recognizes it
as a date?

thanks again~

"CLR" wrote:

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY PASTESPECIAL
VALUES on the column..........."but" they are now TEXT, no longer dates as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 618
Default Can I format a date in all caps?

That formula gives #VALUE, if A1 contains text.
--
David Biddulph

"Mike Campbell" wrote in message
...
Excel can convert date text to system dates. Try this:
=DATE(YEAR(A1),MONTH(A1),DAY(A1))
Where Cell A1 contains the text MARCH 17, 2007

"lamersn" wrote:

So...does this mean there's no way to do it so that Excel still
recognizes it
as a date?

thanks again~

"CLR" wrote:

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY PASTESPECIAL
VALUES on the column..........."but" they are now TEXT, no longer dates
as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Can I format a date in all caps?

Thanks though- I already have the date in the cell I used the formula from
CLR on- was looking for something that would show the date with the month in
caps and still be recognized by Excel as a date~



"Mike Campbell" wrote:

Excel can convert date text to system dates. Try this:
=DATE(YEAR(A1),MONTH(A1),DAY(A1))
Where Cell A1 contains the text MARCH 17, 2007

"lamersn" wrote:

So...does this mean there's no way to do it so that Excel still recognizes it
as a date?

thanks again~

"CLR" wrote:

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY PASTESPECIAL
VALUES on the column..........."but" they are now TEXT, no longer dates as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6,582
Default Can I format a date in all caps?

The all caps date is for display, right? Make one table for display, and
somewhere else have a table that Excel can use for calculations. The extra
cells you need are cheap, especially compared to the effort it would take to
force one cell to fulfill two contradictory roles.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"lamersn" wrote in message
...
Thanks though- I already have the date in the cell I used the formula from
CLR on- was looking for something that would show the date with the month
in
caps and still be recognized by Excel as a date~



"Mike Campbell" wrote:

Excel can convert date text to system dates. Try this:
=DATE(YEAR(A1),MONTH(A1),DAY(A1))
Where Cell A1 contains the text MARCH 17, 2007

"lamersn" wrote:

So...does this mean there's no way to do it so that Excel still
recognizes it
as a date?

thanks again~

"CLR" wrote:

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY PASTESPECIAL

VALUES on the column..........."but" they are now TEXT, no longer
dates as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!



  #10   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 594
Default Can I format a date in all caps?

Maybe use two columns, one with the TEXT date the way you want to see it,
and another with the real Excel date to manipulate as you wish as a
date...........

hth
Vaya con Dios,
Chuck, CABGx3


"lamersn" wrote in message
...
Thanks though- I already have the date in the cell I used the formula from
CLR on- was looking for something that would show the date with the month

in
caps and still be recognized by Excel as a date~



"Mike Campbell" wrote:

Excel can convert date text to system dates. Try this:
=DATE(YEAR(A1),MONTH(A1),DAY(A1))
Where Cell A1 contains the text MARCH 17, 2007

"lamersn" wrote:

So...does this mean there's no way to do it so that Excel still

recognizes it
as a date?

thanks again~

"CLR" wrote:

=UPPER(TEXT(A1,"MMMM d, yyyy")) and copy down and COPY

PASTESPECIAL
VALUES on the column..........."but" they are now TEXT, no longer

dates as
far as Excel is concerned.

Vaya con Dios,
Chuck, CABGx3




"lamersn" wrote:

So it would be MARCH 16, 2007, for example?

thanks!



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
Mileage Claim Formula johndavies New Users to Excel 4 August 14th 06 09:24 AM
Cell date format doesnt change Jon Excel Worksheet Functions 5 March 7th 06 04:52 PM
Change general format to US date format woodlot4 Excel Discussion (Misc queries) 3 October 11th 05 12:29 AM
Customized Date Format Frustrated Excel Worksheet Functions 5 October 7th 05 11:30 PM
Compare dates (one cell not in date format) craigcsb Excel Discussion (Misc queries) 5 June 28th 05 05:07 PM


All times are GMT +1. The time now is 12:45 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"