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: 
Anonymous
Not applicable

Chart: Counts not changing based of list box

See attached sample.

When I select the listbox "INDICATOR" YES the value does not change in the chart.

When I select "YES" the value should change from 5 to 4. Any thoughts on how I can fix?

1 Solution

Accepted Solutions
sunny_talwar

Milind is right, but in case set analysis is needed because INDICATOR have more then the two values you have in your sample and you want the chart to only show YES and NO... then you can try this

COUNT({<INDICATOR *= {'YES','NO'}>} ID)

Read about the usage of asterisk here:

Implicit Set Operators

View solution in original post

2 Replies
md_qlikview
Creator II
Creator II

Hi,

Instead of COUNT({<INDICATOR= {'YES','NO'}>} ID) try Count(ID) only. You have specified modifier as indicatror in your expression cause of which value is not changing.

sunny_talwar

Milind is right, but in case set analysis is needed because INDICATOR have more then the two values you have in your sample and you want the chart to only show YES and NO... then you can try this

COUNT({<INDICATOR *= {'YES','NO'}>} ID)

Read about the usage of asterisk here:

Implicit Set Operators