March 13, 200718 yr I have a calculation field that returns a number. Can I make the display change the color of the number returned depending on the value? For example if the number is less than zero, the text (number)is red. If less than 30, it would be yellow and if more than 30 would be green. How do I set up the color command for that?
March 14, 200718 yr NumberDisplay= Case ( NumberField<0 ; TextColor ( NumberField; RGB ( 250; 0; 0)) ; NumberField<30 ; TextColor ( NumberField; RGB ( 0; 250; 250)) ; TextColor ( NumberField; RGB ( 0; 250; 0)) ) Result is Number or Text. Doesn't seem to matter. You might need to change the rgb values above, bcs I didn't have the time to figure out what is yellow and green.
Create an account or sign in to comment