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

FILTERING MULTIPLE COLUMNS

KamenRider
11 - Bolide

Hi Guys,

 

What will be the syntax in filtering multiple columns where all should be null. The input file look like this for example.

input.JPG

And the results should look like this. Can Filter tool able to remove the row where the last 4 columns are null. 

output.JPG

Here's the excel file attached.

 

Thanks,

Kamen

 

 

 

 

3 REPLIES 3
juvillalobos
7 - Meteor

Use the filter tool and use the following formula 

 

IsNull([Column1]) AND IsNull([Column2]) AND IsNull([Column3])

 

Change the name of the columns for your columns and that should be enough. 

 

Raj
16 - Nebula

@KamenRider find the workflow attached
mark done if solved.

Raj
16 - Nebula

@KamenRider the solution is dynamic and will work for N number of columns.

Labels