SOLVED
Filter on rows which are between two strings, but are in different columns
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
Davonalt
7 - Meteor
‎09-27-2024
03:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Filter on rows which are between two strings, but are in different columns. I have combined several data steams and now i want to filter on the data between two fields. The fields are in bold.
Field 1 | Field 2 | Field 3 | Field 4 | Field 5 | Field 6 | Field 7 | Field 8 | Field 9 |
Excluded In Returns | ||||||||
A | ONE | Mock | 1111 | COMPANY | 5 | 7 | n | |
B | TWO | Mock | 2222 | COMPANY | 6 | 8 | y | |
Subtotal | for Excluded in Returns |
The output would then be..
A | ONE | Mock | 1111 | COMPANY | 5 | 7 | n | |
B | TWO | Mock | 2222 | COMPANY | 6 | 8 | y | |
Solved! Go to Solution.
Labels:
- Labels:
- Datasets
- Developer Tools
2 REPLIES 2
15 - Aurora
‎09-27-2024
03:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Davonalt
You can use the multi-row formula here to create a flag field which you can then filter on
we can check whether the row before contains excluded in returns (which is case insensitive) to turn the flag on, and check if the current field 9 contains it to turn the flag off.
If contains([row-1:Field 1],'excluded in returns') THEN 1
ELSEIF contains([field 9],'excluded in returns') THEN 0
ELSE [row-1:flag]
ENDIF
Hope that helps,
Ollie
‎09-27-2024
05:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you.
