show Field values in upperCase in Crystal reports
c#, crystal-reports
Solution
You don't need to create a separate Formula Field to achieve this result.
Instead, add the following to the field's Display String conditional formula:
UpperCase(CurrentFieldValue)
Problem
In my Crystal Report, I want to show the Field values in Upper Case.Is there any way to do this?