
Creator II
2018-04-24
05:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
407 Views
1 Solution
Accepted Solutions

Champion
2018-04-24
05:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
try this:
=Aggr(Only({<STATUS-={'Draft','Failed'}.>}STATUS),STATUS)
or
=if(not match(STATUS,'Draft','Failed'), STATUS)
1 Reply

Champion
2018-04-24
05:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
try this:
=Aggr(Only({<STATUS-={'Draft','Failed'}.>}STATUS),STATUS)
or
=if(not match(STATUS,'Draft','Failed'), STATUS)
