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: 
northerner
Partner - Contributor III
Partner - Contributor III

Set Analysis - show no records when all dimensions are excluded

I have a simple table with four products:

clipboard_image_0.png

Products A and B are very important to my users, so they should be shown in a table on their own.  There is also a filter allowing a user to select a product:

clipboard_image_1.png

The measure in the table is calculated as: Sum({<Name*={'A', 'B'}>} Value)

This is so that the table shows records for A and B when they are selected or possible.  But if a user selects a Product that is not A or B, then nothing should be shown.

This works ok when A and B are selected or possible e.g.:

clipboard_image_2.png

But it show this when I select Product C:

clipboard_image_4.png

In this case I want to see no rows in the table - A and B are not selected so my users don't want to see any data.

I know I could turn off 'Include zero values' in Data Handling but this is a problem if the value for A or B is 0.  E.g. if the value for A is 0, it's important for my users to see this - they need to know that A has 0 value.

 

I feel like there is an obvious solution to this problem but I can't think what it is.  Any ideas?

Labels (2)
11 Replies
StarinieriG
Partner - Specialist
Partner - Specialist

You have to set format number too (with max of 2 decimals), otherwise you will see 0.001

 

And suppress 0 values

kumar2
Contributor III
Contributor III

Try this in Addons "Calculated Conditions" in Qliksense


if(wildmatch(GetFieldSelections(Name),'*C*','*D*'),0,1)