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: 
itl_qlikview
Partner - Contributor
Partner - Contributor

Apply a Filter on a Bar Chart

Hi all

We are very new on QlikSense. We try to apply a measure filter to a Bar Chart.

In the Bar Chart we have one dimension (ID) and one measure NUMBER calculated as

NUMBER = count(DIM1)

where DIM1 is another dimension of our table.

What we would like to do is showing in our chart only bars for which NUMBER > 1.

We try to insert condition

count(DIM1) > 1

in Add-Ons/Data Handling, but it doesn't seem doing anything.

We suppose that NUMBER isn't aggregated by ID, when it is evaluated in filter.

How can we do to obtain the chart we want?

Thank you

1 Solution

Accepted Solutions
dplr-rn
Partner - Master III
Partner - Master III

tried that as a measure?

View solution in original post

5 Replies
dplr-rn
Partner - Master III
Partner - Master III

Data handling is done for chart level not for each row.
Try this
if(Count(DIM1)>1,Count(DIM1))
itl_qlikview
Partner - Contributor
Partner - Contributor
Author

Already tried... it does not work

dplr-rn
Partner - Master III
Partner - Master III

tried that as a measure?
itl_qlikview
Partner - Contributor
Partner - Contributor
Author

Ok, after restart, insert expression as measure definition (and not as filter) and set No zero value off, we obtain the result we want.

Thank you very much

dplr-rn
Partner - Master III
Partner - Master III

no problem