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

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

Displaying Table data without list box selection

Hi All,

I have two fields with 0,1 values and one straight table with 50 k records.

let 

Field A

-------

0

1

I want to display the straight table values where field value =0,

but I don't want to take the fields as list box to made selections.

Without list box selection how we can display the table data where Field value =0

Thanks in advance

2 Replies
anbu1984
Master III
Master III

You can use calculated dimension

If(FieldA=0,Dimension)

Then select "Suppress When value is Null"

maleksafa
Specialist
Specialist

use if condition like if(FieldA=0, put the dimension name here) or include it in your set analysis for the expressions.

example:

suppose you have 10 dimensions and one expression which is sum(sales), modify it to be sum({<FieldA=0>}sales)