Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible to have a text object (with a numerical value) have a visual cue? For example, if the number is less than 0 be red, greater than 0 be green. I know how to do this in a chart, but wondering if it is possible in a text object?
You should be able to do this...
This is my expression:
=IF(NUM(SUM(transQUANTITY),'#,###.')-num(sum(projectedSales+projCOMP),'#,###.') >0, Green(), Red())
When I try to enter your equation, I get an output of RGB(128,0,0)
I see where I made a mistake. This works, thank you.
What value does this give you in a text box object?
Sum(TransQUANTITY) - Sum(projectedSales + projCOMP)