Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
jheasley
Luminary Alumni
Luminary Alumni

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)