Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Format Date ALL CAPS 2

Status
Not open for further replies.

CHUDMAN

Programmer
Dec 12, 2000
35
US
OK here goes guys and gals,
I want to format a date from:
March 12, 2005 to MARCH 12,2005

I know it should be easy, but none of my attempts work.

Need it fast.



Chad L. Miller
Configuration Analyst
SEI/CMM level 3 certified
 
Please post your software version when requesting help.

Is this an actual date field, or a string field containing a date?

I'll assume that it's a date field, so use:

uppercase(totext(cdate({table.date}),"MMMM dd, yyyy"))

-k
 
You could use:

ucase(totext({table.date},"MMMM dd, yyyy"))

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top