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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis intersection between previous excluded and current selection

Hello,

I need to check if the current selection is part of the excluded selection of the previous selection.

Maybe with set analysis ?

I tried the following

  = Count({1-$1 * $} Field) > 0

an intersection between the previous excluded selection {1-$1} and the current selection {$}.

1 Reply
pover
Partner - Master
Partner - Master

You're are just missing a parenthesis:

count({(1-$1) *$} Field)

Karl