Mar 18, 2004 #1 Jefftopia Programmer Jul 30, 2002 104 US Is there a function to convert text to initial caps? For example: The string "EAT MY SHORTS" would be converted to "Eat My Shorts".
Is there a function to convert text to initial caps? For example: The string "EAT MY SHORTS" would be converted to "Eat My Shorts".
Mar 18, 2004 #2 vidru Programmer Jul 18, 2003 2,113 US If you've got Crystal 9, there should be a ProperCase function that does what you're looking for. Here's the KB article: http://support.businessobjects.com/library/kbase/articles/c2011637.asp If you don't have 9, there's a LeadingCaps UFL that you can get here: http://support.businessobjects.com/communityCS/FilesAndUpdates/uflcaps.exe.asp -dave Upvote 0 Downvote
If you've got Crystal 9, there should be a ProperCase function that does what you're looking for. Here's the KB article: http://support.businessobjects.com/library/kbase/articles/c2011637.asp If you don't have 9, there's a LeadingCaps UFL that you can get here: http://support.businessobjects.com/communityCS/FilesAndUpdates/uflcaps.exe.asp -dave
Mar 18, 2004 #3 Turkbear Technical User Mar 22, 2002 8,631 US Hi, If you can edit your Sql, and your Database supports it, you can use a function ( in Oracle it is Code: InitCap(field_name) Your results may vary, depending on your Database's syntax. Upvote 0 Downvote
Hi, If you can edit your Sql, and your Database supports it, you can use a function ( in Oracle it is Code: InitCap(field_name) Your results may vary, depending on your Database's syntax.