Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Avoidance in list box

Hi All

In list box, how it is possible ignore selection.

Like in below Set Analysis SNAME slection are ignored.

sum({$<SNAME=>} VALUE)

Is this possible in list box? Like show all SNAME

Thanks


3 Replies
petter
Partner - Champion III
Partner - Champion III

Create an "Alternate State" in your Document and then select the newly created alternate state as the state for your list box. Then this list box will not be selection-wise be connected to your default selection state.

Anonymous
Not applicable
Author

Hi Petter

By this even if I select any SNAME which does not affect to my Pivot table.

I should need this effect based on SNAME selection

Thanks for your suggestion

petter
Partner - Champion III
Partner - Champion III

Then you can refer explicitly to the selection in the Alternate State like this:

     Sum( {AltState1} Sales)

This makes the Sales be affected by only AltState1 but you can refine it with set modifiers or even combine it with selection in the default state which has the name $ ... just as the default selection also has the name $:

    Sales( {AltState1<SNAME={'ABC'}>} Sales)

Or

   Sales( {AltState1<SNAME={'ABC'}*$<Product={'B123'}>} Sales)

This will intersect with the * between the rows in AltState1 and Default State taking into account the modifiers too.