Show field values ​​in upperCase in Crystal reports

In my Crystal Report, I want to show the field values ​​in uppercase. Is there any way to do this?

+5
source share
2 answers

You do not need to create a separate formula field to achieve this result.

Instead, add the following Display String conditional expression to the field:

UpperCase(CurrentFieldValue)
+19
source

Here you go ... http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=8823

In this example, you will notice that they use the UpperCaseCrystal Reports function . So, all you have to do is say the UpperCase( name of a field ) and this will take care of it for you.

+2
source

All Articles