Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bhavvibudagam
Creator II
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
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
Champion

Hi,

try this:

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

or

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