Sep 20, 2004 #1 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
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
Sep 20, 2004 #2 synapsevampire Programmer Mar 23, 2002 20,180 US You don't want lower case, you want mixed case (or termed propercase in Crystal). There's a function called PROPERCASE(). -k Upvote 0 Downvote
You don't want lower case, you want mixed case (or termed propercase in Crystal). There's a function called PROPERCASE(). -k
Sep 20, 2004 #3 bdreed35 Programmer Mar 2, 2003 1,549 US To convert to all lowercase, use the lowercase function: lowercase({table.field}) There is also a propercase function: propercase({table.field}) ~Brian Upvote 0 Downvote
To convert to all lowercase, use the lowercase function: lowercase({table.field}) There is also a propercase function: propercase({table.field}) ~Brian
Sep 20, 2004 Thread starter #4 ddnh Programmer Nov 25, 2002 94 US thanks! That was fast! Upvote 0 Downvote