Alteryx Designer Desktop Discussions

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

Deduping where a single field is different

JonnyR
7 - Meteor

I have a dataset which looks a bit like the below:

 

ABCDE
AB DE
FG IJ
FGHIJ
KL NO
PQ ST

 

So occasionally a row has been duplicated where a single field has both a value and is empty. I would like to remove the rows where the exact same row exists but with data in the 3rd column and keep the row if this is not the case. i.e. make the above look like the below:

 

ABCDE
FGHIJ
KL NO
PQ ST

 

How could I go about doing this?

 

Thanks

2 REPLIES 2
AdamR_AYX
Alteryx Alumni (Retired)

I'd use a summarise and group on fields 1,2,4 and 5 and then choose either First for column 3 or maybe Concat depending on the actual data.

Adam Riley
https://www.linkedin.com/in/adriley/
jasperlch
12 - Quasar

Hi, I think the combination of Tile, Summarise and Filter tools will do the job:

 

Capture1.PNG

Labels