Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Arrows in Straight table with text

Hi All

I have a straight table with text, i need to show arrows in same column along with the same condition,

Used and , & operator did not work.

Expression I have

=if([Percentage]>0 and [Percentage] <=0.4, rgb(255,0,0),

if([Percentage] >0.4 and [Percentage] <=0.7, rgb(255,255,0),

if([Percentage] >0.7 and [Percentage]<=1, rgb(0,255,0),

Need to show like thisstraighttablearrow.bmp

Thank you

5 Replies
Not applicable
Author

Hi


if([Percentage]>0 and [Percentage] <=0.4,'qmem://<bundled>/BuiltIn/arrow_n_g.png','qmem://<bundled>/BuiltIn/arrow_s_r.png')


-or-


=if([Percentage]>0 and [Percentage] <=0.4,'qmem://<bundled>/BuiltIn/arrow_s.png',

if([Percentage] >0.4 and [Percentage] <=0.7,'qmem://<bundled>/BuiltIn/arrow_s_g.png',

if([Percentage] >0.7 and [Percentage]<=1,'qmem://<bundled>/BuiltIn/arrow_s_r.png',



amit_saini
Master III
Master III

Not applicable
Author

Hi Harshal,

Thank you but i should also have the cell color and arrow (to show trend) need both in same cell.

Roop
Specialist
Specialist

To do exactly what you require - I don't think that it is possible but you can get somewhere near by applying different ways of the system appearing as though they are the same column. It is not exact bu hope it helps.

example.png

Not applicable
Author

Thank you all.