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

Guages, Filtered and un filtered on same sheet

I Would like to place pairs of guages on a sheet ie:
Guage1 = Sum(Sales Value)
Guage2 = sum(selected.Sales Value)

How is this acheived at the moment both guages update when a filter is applied ?

ColinR

1 Solution

Accepted Solutions
Not applicable
Author

Hi Colin,

simply write:

Sum( {1} [Sales Values]) //Explanation: {1} stands for "selections are ignored"

Sum({$} [Sales Values]) //Explanation: {$} calculations are made only for selected values

See also QV help for more information on "Set Analysis".

Good luck!

Rainer

View solution in original post

3 Replies
Not applicable
Author

Hi Colin,

simply write:

Sum( {1} [Sales Values]) //Explanation: {1} stands for "selections are ignored"

Sum({$} [Sales Values]) //Explanation: {$} calculations are made only for selected values

See also QV help for more information on "Set Analysis".

Good luck!

Rainer

Not applicable
Author

Hi Colin,

simply write:

Sum( {1} [Sales Values]) //Explanation: {1} stands for "selections are ignored"

Sum({$} [Sales Values]) //Explanation: {$} calculations are made only for selected values

See also QV help for more information on "Set Analysis".

Good luck!

Rainer

Not applicable
Author

thanks, ive been wondering when set analysis should be used