Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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!
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!
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