Alteryx Designer Desktop Discussions

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

Customer filter

Hussein982
8 - Asteroid

Hi All: I have a file that contains thousands of rows and trying to only filter for certain operating units (such as Operating unit A, B and C)

 

Can I use the custom filter function and build a formula such as:  Operating unit "A" AND "B" AND "C"  to select specific operating units. 

 

Currently its not working for me. Any help in appreciated. 

 

Operating unit Supplier Number Supplier name 
A11A
B21B
C31C
D41D
3 REPLIES 3
Luke_C
17 - Castor

Hi @Hussein982 

 

You could use a custom filter like this:

 

[Operating unit ] in ('A','B','C')

 

echuong1
Alteryx Alumni (Retired)

Another method (that may be easier to maintain if you need to add/remove operating units) is to use a reference table with the operating units needed, and a join.

 

echuong1_0-1617120474717.png

 

Hussein982
8 - Asteroid

@Luke_C  thank you for your prompt response. 

Labels