Filter Data set with excel file, criteria with Regex
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
I stuck with resolving a situation in which there is need to filter a data set, and to avoid modifying the workflow each time the criteria changes I decided to use an excel file with a list of the criteria, the thing is, the criteria is like 5* or 654*, it mean we wanna see only the ones where the data start with 5 or 654. The filtered data will contain code numbers, held as string.
Would appreciate any kind of support on this.
Solved! Go to Solution.
- Labels:
- Expression
- Input
- Workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This is a batch macro where each pattern from an external excel file is replaced in the regex_match function.
Also, a pattern of '5*' does not necessarily mean a number that starts with a 5. That pattern would match 'zero or more 5's' (e.g. 5, null, 555). I added some more example regex patterns to help explain.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you, but i was not able to make this solution work on my project, probably cause of my short knowledge of macros in Alteryx.
Although I resolved the issue just by appending these two data sources, then adding a new column with formula StartsWith(String, Target), then filtering it to get just the True values ;)
