Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

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

Filter on two values

BrettFL
5 - Atom

I'm trying to create a filter that would keep all rows except when:

 

Column B [Portfolio] = Information Technology and column D [Configuration Item] is empty.

Column B [Portfolio] = Mercury and Column D [Configuration Item] is empty.

 

If Information Technology or Mercury have configuration items then they should not be removed.

 

Appreciate any help!

 

BrettFL_0-1613679523100.png

 

 

2 REPLIES 2
pedrodrfaria
13 - Pulsar

HI @BrettFL 

 

Is this what you are looking for?

 

[Portfolio] = 'US Information Technology' and !IsNull([Configuration item]) or
[Portfolio] = 'Mercury' and !IsNull([Configuration item])

 

pedrodrfaria_0-1613679900749.png

 

Pedro.

 

BrettFL
5 - Atom
Spoiler
Thank you, perfect!
Labels