I have a pretty basic contact sheet table and I’d like to be able to identify and eliminate duplicates based off of email address column.
I came across this post but the formula did not work in my case.
What action formula can I write to search for and eliminate rows with duplicate email addresses that occur later in the “Row ID” column or as newer in the “Date Created” column?
I splitted the steps to make it easier to follow and added the count (though not needed) for the visual aspect:
the count : thisTable.Filter(email.Contains(thisRow.email)).Count()
the first: thisTable.Filter(email.Contains(thisRow.email)).First()
to keep: thisTable.Filter(email.Contains(thisRow.email)).First().Contains(thisRow)