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

Assign filters to specific graphs

I was wondering if it is possible to assisgn filters to specific graphs.

I have two filters (client and Weeks) and three graphs.

I want to apply the client filter to all three graphs but only apply the Weeks filter to the other two. Does anyone know how to do this?

Many thanks

1 Solution

Accepted Solutions
jerem1234
Specialist II
Specialist II

For the chart you do not want the Weeks filter to apply to, you can add set analysis like:

sum({<Week=>}Sales)

This will ignore selections made on Week.

Hope this helps!

View solution in original post

2 Replies
jerem1234
Specialist II
Specialist II

For the chart you do not want the Weeks filter to apply to, you can add set analysis like:

sum({<Week=>}Sales)

This will ignore selections made on Week.

Hope this helps!

maxgro
MVP
MVP

use different expressions in your charts depending on requirement, in your case:

sum(Sales)            return the sales for current selection

sum({$} Sales)       the same as sum(Sales)


sum( {$<[Field 1]= >} Sales )           returns the sales for the current selection, but with the selection in “Field 1” removed; if you want to remove selection also in Field 2:

sum( {$<[Field 1]=,[Field 2]= >} Sales )

in Qlikview online help you can fond a lot of useful examples