|
|
Question : Format Text Field in Crystal Reports to Title Case
|
|
I am using Crystal Reports with SQL data and want to format the text in a column to be in Title Case (First letter of each word is capitalized). Does anyone know a forumal for that?
Thanks in advance.
JJ
|
Answer : Format Text Field in Crystal Reports to Title Case
|
|
If you use SQL Server, you may be able to create a SQL Expression using this command.
UPPER( SUBSTRING({yourtable.name},1,1 )
Adjust the format if your field contains a FULLNAME.
Hope it helps.
MikeV
|
|
|
|