Is there a way to return the row location of all instances of a duplicate value within a column?
Jim Rood
✭✭✭✭
I've created a duplicate flag column using the following formula: =COUNTIF(Email1, Email1) + " of " + COUNTIF(Email:Email, Email1).
This shows the instance and the count. What I would like to be able to do is provide the row numbers of the duplicate emails. Match will only find the firs duplicate but won't return all of the duplicates.
Thanks for whatever assistance you can provide.
Answers
-
You would need to add in a column that essentially replicates the sheet row number first.
=COUNTIFS(Email$1:Email@row, OR(@cell = "", @cell <> ""))
Then you can use a JOIN/COLLECT similar to...
=JOIN(COLLECT([Row #]:[Row #], Email:Email, Email@row), ", ")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!