Hello,
I have a set of data that needs to have filters and categorize it from excluded or included based on multiple things. Is there a way I can create a key or legend in alteryx to have this flow?
For example, If
thank you in advance!
Solved! Go to Solution.
@kmontoya Try something along these lines:
IF [instrument type] = "cashflow" or [exchange] in ("AVG","GTO") then "Excluded" else "Included" endif
The formula above is easiest.
If you have a list of 75 items, that may not work. I would do this by creating a look-up table and then use a find replace to append the include/exclude.
The lookup table would be like this:
Field | Term | Decision |
instrument type | cashflow | Exclude |
Then either use that trickily on the whole set at once, or use a filter for each [Field] term and apply once at a time.