I have a large file of data and one of the fields is [Status]. It's a freeform field that is populated upstream, but there are a few systematic status that I want to look at. I have a separate input file that is just a list of my desired statuses. In SQL I would just do "SELECT * FROM t1 WHERE t1.[Status] IN (SELECT t2.[Status] FROM t2)"
I can't find any tool similar in Alteryx that let's me use a recordset to extra items from another recordset. I tried the filter tool but I don't think it has what I need.