Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Arrow Images in Straight Table

Hi,

I'm trying to make arrows - one up, one straight, one down.

Based on an integer that is either positive, = to zero, or negative.

Here's the expression I am using

(if(column(3)>0 ,('qmem://<builtin>/Arrow_N_G.png,
if(column (3)=0 ,(qmem://<builtin>/Arrow_E_Y.png,
if(column (3)<0 ,(qmem://<builtin>/Arrow_S_R.png')))


Can anyone help me fix this?


Thanks, JV

1 Solution

Accepted Solutions
Not applicable
Author

Very nice.  I guess I got excited with all the ( and ).

Thanks. jv

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Here:

if(column(3)>0 ,'qmem://<builtin>/Arrow_N_G.png',
if(column (3)=0 ,'qmem://<builtin>/Arrow_E_Y.png',
if(column (3)<0 ,'qmem://<builtin>/Arrow_S_R.png')))



Not applicable
Author

Very nice.  I guess I got excited with all the ( and ).

Thanks. jv