Hi Folks,
I want to filter the records which is an output in Alteryx flow. The filtration of records should be done based on the selection in Microsoft Excel.
Example:
In the Excel sheet, I will have a drop-down list (1,2,3,4,5).
In Alteryx, I have a table with the following records:
| ID | Name | Age |
| 1 | John | 25 |
| 2 | Peter | 35 |
| 3 | Amy | 45 |
| 4 | Parker | 12 |
| 5 | Sun | 22 |
So, If I select '1' in Excel, the selection should be fed into Alteryx and the records for ID = 1 should be fetched.
How do I work on it?
Thanks in advance.