This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Hello all. This is my first post.
I have four columns of data in an Excel workbook. In columns A and B, there are duplicate values. Using a VBA macro, columns A and B would be conditionally formatted pink, then filtered and deleted. In the example below, there should only be two records remaining (as pictured). How can I accomplish this same task in Alteryx. Thanks :)
Before
After
Hi @robertfishel,
first, I would find the duplicates for the first column and removing them from the original file using a left (or right) join.
Then I would use the same approach tu remove the duplicates in the second column.
Find my solution attached, hoping it helps.
Thank you mborriero. My solution involved summarizing (group by and count of ID), filtering for count of ID = 1, then joining back to the original table. I did this again for the ID2 column.