Check 2 Columns for duplicate values and Combine into Parent Child
I have a sheet where we capture name and e-mail. I want to check the sheet to see of these match and if they do, combine the duplicates into a parent child relationship with the first entry being the parent. I already capture the creation information so establishing the first entry should not be a problem.
Any suggestions?
Answers
-
As far as I know, there's no way to automatically combine rows in a parent/child hierarchy.
Now, if you want to do this so you only display each name/address once, I can suggest you a workaround to this.
Add an helper column named "Duplicate" (flag type column) with this formula:
=IF(COUNTIF([Name]$1:[Name]@row,[Name]@row,[EMail]$1:[EMail]@row,[Email]@row)>1,1,0)
This will check if the name/email address combo was previously entered.
Then create a report out of this that only show rows where duplicate is at 0.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!