I'm trying to create a generic solution for all my datasets (50+)
Different dataset can have different conditions on which data will be filtered.
instead of writing multiple if/else I'm saving them in a column.
Question: can i use my IF condition from dataset into IF condition custom filter ?
column (dataset_ID) will refer to the dataset that i'll be using. it will be multiple (50+ in number)
but i'll be running worflow only for one dataset at a time.
| dataset_ID | IF_Condition |
| 1 | [STATUS] != 'closed' AND [CLEARED] = 1 |
| 2 | [STATUS] != 'open'
|
| 3 | [CLEARED] = 0 |