Page 1 of 1
Change color of a field in runtime
Posted: Fri Jun 11, 2004 10:23 am
by Roni_Hougui_(Guest)
How can I change the color of a field during run time ?
=> Change color of a field in runtime
Posted: Sun Jun 13, 2004 8:15 am
by kfleming
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