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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert CAPS to lower case

Status
Not open for further replies.

ddnh

Programmer
Nov 25, 2002
94
US
I have some text fields with data in all CAPS. Is there a formula I can use to convert them to lower case?

Existing data: SEE THE CAT
Convert to: See the cat

I'm using CR 10
 
You don't want lower case, you want mixed case (or termed propercase in Crystal).

There's a function called PROPERCASE().

-k
 
To convert to all lowercase, use the lowercase function:

lowercase({table.field})

There is also a propercase function:

propercase({table.field})

~Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top