Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

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