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

Exclude Data from Input File based on Business rules

kal-tech
8 - Asteroid

Hi All:

 

Could you please help how to get the output file from the input file as stated below.

 

If an individual has multiple email addresses, they should be shown in the output file, excluding any email addresses with no value. In this case, the 3rd row with ID 12345 should be removed from the output file.

 

If an individual has only one record and does not have an email address, that record should be displayed in the output file.

 

Input File

 

IDFirst NameLast NameEmail
12345JohnLavaertJL@gmail.com
12345JohnLavaertJL@AOL.com
12345JohnLavaert 
45678EdShaw 

 

Output File

 

IDFirst NameLast NameEmail
12345JohnLavaertJL@gmail.com
12345JohnLavaertJL@AOL.com
45678EdShaw 
2 REPLIES 2
griffinwelsh
12 - Quasar

@kal-tech See the attached solution. The key is to use a filter and join tool to identify which records do not have email addresses.

kal-tech
8 - Asteroid

Thank you griffinwelsh. The issue has been resolved.
 

Labels