Join the Inspire AMA with Joshua Burkhow, March 31-April 4. Ask, share, and connect with the Alteryx community!

Alteryx Designer Desktop Discussions

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

Filter, String contains Word

wonka1234
10 - Fireball

Hi,

 

I am trying to apply the follwing filter:

 

[ColA] != 0 and [Category] = "Other"

 

But I am trying to alter the Category filter to : Contains the word Other. Not filter strictly for Other.

 

 

3 REPLIES 3
PhilipMannering
16 - Nebula
16 - Nebula

You want the following,

 

[ColA] != 0 and contains([Category], "Other")
wonka1234
10 - Fireball

Thanks, do you know how to make it NOT contains?

Luke_C
17 - Castor
17 - Castor

Hi @wonka1234 :

 

[ColA] != 0 and !contains([Category], "Other")
Labels
Top Solution Authors