Hi there,
I'm in a situation where in i have 2 tables.
Table1 is my master data and Table2 is a mapping table and can have different values in From_Code & To_Code. So, my workflow has to have a dynamic filter to deal with BETWEEN filter for alphanumeric values.
I have to filter on column CODE based on CODES that lie between 2 alphanumeric values residing in Table2.
Table1
| Code | Amount |
| FBXY | 100 |
| FBXYUVTR | 200 |
| FBXYWTRD | 50 |
| FBXYWTRA | 20 |
Table2
| Condition | From_Code | To_Code |
| Between | FBXY | FBXYWTRD |
Now, i want to filter data that lies in between Code(FBXY till FBXYWTRD).
I'm struggling to build a logic around this. Thought of JOIN control first, but couldn't figure out how JOIN would look like, since the starting value and final value of the BETWEEN range are in different columns. Thought of using a macro, but quite new to Alteryx so couldn't really start of with the idea.
Can someone please help me with this.
TIA.