Change color of a field in runtime
-
- Posts: 1
- Joined: Tue Oct 10, 2017 12:44 pm
Change color of a field in runtime
How can I change the color of a field during run time ?
=> Change color of a field in runtime
To change the color of a field you need to actually place two calculated fields on the report each formatted with a different color.__You then use two mutually exclusive conditions so that either the one or the other prints.__For example if you want to print negative numbers in red and positives in black you could the expression:__IIF(amount<0,amount,blanknum())__and format this field as red.__The second expression:__IIF(amount>=0,amount,blanknum())__would be placed on top of the first and formatted as black.____Kathleen__R&R Support