Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewaf
Creator
Creator

Little Arrow

Hi,

i have a text-box, is a percentage green in case is positive, red if negative. Really easy.

I would like to add the little arrow Red or green based on the value. How i can do it?

Thank you!!

kpi.PNG

1 Solution

Accepted Solutions
marcus_malinow
Partner - Specialist III
Partner - Specialist III

Hi Antonio,

I think the characters you're looking for might me chr(9650) and chr(9660)

if([expression] < 0, chr(9660), chr(9650))

Marcus

View solution in original post

9 Replies
Anil_Babu_Samineni

That's not possible. with single object. Instead of that, You can achieve work around using Straight table. Are you expecting Along with number? or Alone Arrows?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

You must use another text box using preloaded images and conditionals.

Cheers.

marcus_malinow
Partner - Specialist III
Partner - Specialist III

Hi Antonio,

I think the characters you're looking for might me chr(9650) and chr(9660)

if([expression] < 0, chr(9660), chr(9650))

Marcus

dberkesacn
Partner - Creator III
Partner - Creator III

Hi, how you will handle the colors with this solutions?

fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

In one object you can play with shapes and colors.

Cheers

devarasu07
Master II
Master II

Capture.JPGCapture2.JPG

dberkesacn
Partner - Creator III
Partner - Creator III

indeed with calculated colors, you can use expression!

You are right!

marcus_malinow
Partner - Specialist III
Partner - Specialist III

How about applying a calculated font colour?

if([expression]>0, rgb(0,255,0), rgb(255,0,0))