SOLVED
Creating multiple filters
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
vvissamsetty
8 - Asteroid
04-25-2019
06:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I'm trying to create multiple filters on one dataset. Right now I'm following the below procedure but is there anyway I can cut this short?
1) Filter 1 - Remove zeroes in column 'value'.
2) Filter 2 - Remove Nulls in column 'value'.
3) Filter 3 - Remove records 'total' in column 'F1'.
3) Filter 4 - Remove records 'total' in column 'Name'.
Solved! Go to Solution.
Labels:
- Labels:
- Tips and Tricks
2 REPLIES 2
17 - Castor
04-25-2019
06:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Yes it can with OR operator, using a single filter tool.
!(Value = 0 OR IsNull(Value) OR Contains([F1], "Total") OR Contains ([Name], "Total"))
Cheers,
04-25-2019
07:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks Thableaus, that helped!
Cheers
