Hi All,
I am working with Alteryx Designer and facing issue with Filtering unique records and always get first record based on two conditions.
I have a excel similar to the below table, I have to match the record based on the name with another excel. But based on the Group and Status column I need to pick the first row of matching, if it is Inactive then I need to select the next Active one
| Name | Group | Status | Expected Record to be picked |
| Aaaa | A | Active | Yes |
| Aaaa | A | Active | |
| Bbbb | B | Inactive | Yes |
| Bbbb | B | Inactive | |
| Cccc | C | Inactive | |
| Cccc | C | Active | Yes |
| Dddd | D | Inactive | |
| Dddd | D | Inactive | |
| Dddd | D | Inactive | |
| Dddd | D | Active | Yes |
I have tried with Select sample type, but it is failing for "Cccc", dont have idea to implement condition with Select Sample Type Component.