Skip to main content
Announcements
See why Qlik was named a Leader in the 2025 Gartner® Magic Quadrant™ for Augmented Data Quality Solutions: GET THE REPORT
cancel
Showing results for 
Search instead for 
Did you mean: 
bhavvibudagam
Creator II

Dimension with qualifying records.

Hi Experts,

Can any one please help me on below requirement.

I have one dimension called STATUS like below.

In this dimension I have to show all the records other than Draft and Failed like status -={'Draft','Failed'}.

Please help me on this.

Thanks in advance.

1 Solution

Accepted Solutions
YoussefBelloum
Champion

Hi,

try this:

=Aggr(Only({<STATUS-={'Draft','Failed'}.>}STATUS),STATUS)

or

=if(not match(STATUS,'Draft','Failed'), STATUS)

View solution in original post

1 Reply
YoussefBelloum
Champion

Hi,

try this:

=Aggr(Only({<STATUS-={'Draft','Failed'}.>}STATUS),STATUS)

or

=if(not match(STATUS,'Draft','Failed'), STATUS)