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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
jheasley
Creator III
Creator III

limit a table dimension

good afternoon,

I have a table that uses 2 dimensions and a number of measures.  Dimension 2 ('Event') only has 2 values, and I want to create 2 independent versions of the table that are specific to the 2 values.  how can I limit the dimension to bring back only those 2 values?

1 Solution

Accepted Solutions
Not applicable

Hi

You can use set analysis in your expressions. Something like this

Tabel1

Sum({<DIM1={'VAL1'}>} Field1)

Sum({<DIM1={'VAL1'}>} Field2)

Table2

Sum({<DIM1={'VAL2'}>} Field1)

Sum({<DIM1={'VAL2'}>} Field2)

View solution in original post

1 Reply
Not applicable

Hi

You can use set analysis in your expressions. Something like this

Tabel1

Sum({<DIM1={'VAL1'}>} Field1)

Sum({<DIM1={'VAL1'}>} Field2)

Table2

Sum({<DIM1={'VAL2'}>} Field1)

Sum({<DIM1={'VAL2'}>} Field2)