Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi QV Team,
I have a text box expression value =num(($(vIOAY) - $(vIOPY)) / $(vIOPY)*100,'#,#0') &' %' =-90,70%
which has positive and negative values.
I need to display the Green Arrow when a value is Positive otherwise Negative Arrow should display.
Hi,
Use bundle image object write expression like
if(num(($(vIOAY) - $(vIOPY)) / $(vIOPY)*100,'#,#0')>0,'qmem://<bundled>/BuiltIn/arrow_n_g.png','qmem://<bundled>/BuiltIn/arrow_s_r.png')
Regards,
Prashant
Hi,
Use bundle image object write expression like
if(num(($(vIOAY) - $(vIOPY)) / $(vIOPY)*100,'#,#0')>0,'qmem://<bundled>/BuiltIn/arrow_n_g.png','qmem://<bundled>/BuiltIn/arrow_s_r.png')
Regards,
Prashant
Thanks Prashant Sangle !
Hi,
try this set Analysis...
=If(num(($(vIOAY) - $(vIOPY)) / $(vIOPY)*100,'#,#0')> 0, 'qmem://<bundled>/BuiltIn/arrow_s_r.png',
, 'qmem://<bundled>/BuiltIn/arrow_s_r.png'))