Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
hammermill21
Creator III
Creator III

How Can I added upper and lower arrow indicators in Qlik Snese

Hello.

I have a pivot chart showing some scores and I have a trend column that I want to add arrow indicators. So like I change the colors for the different scores using this expression:

If(

Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.95,Green(),

If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.8,Yellow(),

If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0,Red(),

DarkGray())))

So I was wondering if there was something like that I can do to add indicators to one of the columns?

Capture_7_25_18.PNG

Thanks!

Lizzy

1 Solution

Accepted Solutions
4 Replies
ogautier62
Specialist II
Specialist II

hammermill21
Creator III
Creator III
Author

Hi,

Thank you! I got it working, but how can I also change the colors of the arrows?

So now I'm using this:

If(

Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.95,chr(9650),

If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.8,chr(8594),

If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0,chr(9660),

DarkGray())))

hammermill21
Creator III
Creator III
Author

Never mind, I got the colors working too. THANK YOU!

Aswathy
Partner - Contributor
Partner - Contributor

1. Add a new measure to the Pivot Chart for Trend indicators

2. Try expression like  If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.8,Chr(9650),Chr(9660))

3.In Text Color expression try

If(

Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.95,Green(),

If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0.8,Yellow(),

If(Alt(Sum(Score)/Count({<Score={">0"}>}[Record ID])/3,0)>0,Red(),

DarkGray())))

 

Hope this Helps!