Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analyis: Complete set restricting 1 field on Current Selection

Hello,

I'm trying to figure out if it is possible to create a measure for the total sales in the selected month, disregarding all other selection.

I have tried te following: SUM( {1<month = {$}>} Sales)

But this doesn't work. Any ideas?

Kind regards,


Daniel

1 Solution

Accepted Solutions
stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

Try:

SUM( {1<month = {$(=Concat(month,','))}>} Sales)

Stephen

View solution in original post

2 Replies
stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

Try:

SUM( {1<month = {$(=Concat(month,','))}>} Sales)

Stephen

Not applicable
Author

Thanks!