Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if the value=0 i want to show the value in BLUE,
if the value > 0 then I want to show the value in RED ,
if the value < 0 then I want to show the value in GREEN.
Please help!
Chart Properties-> Expand the expression
You will get Text color Under expression and give your condition . Refer the image below
Condition is some thing like...If(value=0,BLUE(),if(value > 0,RED(),green()))
Chart Properties-> Expand the expression
You will get Text color Under expression and give your condition . Refer the image below
Condition is some thing like...If(value=0,BLUE(),if(value > 0,RED(),green()))
Thanks that was simple. I was searching for this option.