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: 
Amelia_96
Contributor III
Contributor III

Display only certain value in dimension in straight table/pivot tale

Hi, i have another problem where in one dimension, let say status got 5 values which is Paid, Pending, Inforce, Cancelled and Terminated. But i just want to show Paid and Pending in the pivot table. How do i do this ya? Because when i select status as dimension, it will show all five status.

Please help me. Thank you!!

1 Solution

Accepted Solutions
GaryGiles
Specialist
Specialist

If you wanted to limited the values by only using the dimension field, you could use:

aggr(Only({$<Status={'Paid','Pending'}>} Status),Status)

Or, if you have a measure, just add {$<Status={'Paid','Pending'}>} as set analysis.

View solution in original post

2 Replies
GaryGiles
Specialist
Specialist

If you wanted to limited the values by only using the dimension field, you could use:

aggr(Only({$<Status={'Paid','Pending'}>} Status),Status)

Or, if you have a measure, just add {$<Status={'Paid','Pending'}>} as set analysis.

Amelia_96
Contributor III
Contributor III
Author

It works! Thank you 🙂