Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

I want to select rows from columns which contain data and skip those who doesn't contain.

swarajjoshi
7 - Meteor

Hey guys I have 2 columns in which are Contact(Int64) and Contact Id(String), both of them contain some null records. So I want to select only those rows which contain data and don't want the rows which don't contain record.

I have attached my data below. It would look same i.e if there is data in Contact there would be data in Contact Id to.

3 REPLIES 3
atcodedog05
22 - Nova
22 - Nova

Hi @swarajjoshi 

 

you can use a filter tool and check for empty cells

 

!IsEmpty([Contact]) and !IsEmpty([Contact ID])

 

Both are empty

atcodedog05_0-1606131885535.png

 

Here is resource on filter tool.

https://community.alteryx.com/t5/Interactive-Lessons/Filtering-Data/ta-p/76301

 

And is both Or is either

 

Hope this helps 🙂


If this post helps you please mark it as solution. And give a like if you dont mind 😀👍

 

Emil_Kos
17 - Castor
17 - Castor

Hi @swarajjoshi ,

 

I have prepared a workflow for you:

 

Emil_Kos_1-1606131973552.png

 

And the output:

 

Emil_Kos_2-1606131986776.png

 


If helpful please mark my post as a solution.

Good luck!

 

 

DavidP
17 - Castor
17 - Castor

Hi @swarajjoshi 

 

Did you know that since version 2020.2 The Data Cleanse tool includes an option for removing null rows and columns?

 

DavidP_0-1606135548391.png

 

Labels