We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

how to select multiple records to output

vern
8 - Asteroid

Custom filter

[COMPANY] = 1 AND

[EMPLOYEE] = 28 OR

[COMPANY] = 1 AND

[EMPLOYEE] = 82

 

 

...trying to select multiple records to output to a file?

2 REPLIES 2
dhovey
7 - Meteor

Hi vjconaway. Are you trying to use multiple criteria in a filter tool and need help with making it work? From your example, you would need to insert parenthesis around competing criteria, like:

( [COMPANY] = 1 AND [EMPLOYEE] = 28 )

OR

( [COMPANY] = 1 AND [EMPLOYEE] = 82 )

 

In your example, you could also write:

[COMPANY] = 1 AND [EMPLOYEE] In (28, 82)

 

Hope this helps.

afv2688
16 - Nebula
16 - Nebula

Hello @vern,

 

You might also consider setting up a lookup table with a join tool to find the values:

 

Untitled.png

 

Regards

Labels
Top Solution Authors