Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
D19PAL
Creator II
Creator II

Set analysis to take selection from filter pane

Hi,

I would like my set analysis to = what is selected in filter pane.

So if filter pane is A

In the set analysis it will be.

Count({<test = {'A'}>}id)

 

I think we can hardcode A,B,C etc, but what if the list is huge and always new stuff added.  So I want it automatically pick up a selection.

 

Thanks

 

 

Labels (2)
1 Solution

Accepted Solutions
marcus_sommer

If you need to relate to the set selections respectively the possible ones you could use p() respectively the reverse approach with e(), like:

Count({<test = p(test)>}id)

But within the standard-scenario of a UI usage you don't need it because all objects will react on the made selections.

View solution in original post

1 Reply
marcus_sommer

If you need to relate to the set selections respectively the possible ones you could use p() respectively the reverse approach with e(), like:

Count({<test = p(test)>}id)

But within the standard-scenario of a UI usage you don't need it because all objects will react on the made selections.