Mark Duplicate value
Comments
-
Great, thanks for letting us know! 🙂
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
-
I am looking for a Duplicate function to find matches between a Campaign ID column and the Status column.
Currently using:
=IF(COUNTIF([Campaign ID]@row:Status@row, [Campaign ID]) > 1, 1)
it returns as #UNPARSEABLE
-
You're missing the row number or ID after the column name for the criteria of what you're looking for in the COUNTIF function:
COUNTIF([Campaign ID]@row:Status@row, [Campaign ID])
Should be:
COUNTIF([Campaign ID]@row:Status@row, [Campaign ID@row])
Try this:
=IF(COUNTIF([Campaign ID]@row:Status@row, [Campaign ID]@row) > 1, 1)
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
-
Hello, I am having trouble with suggested formula. Any advice is appreciated:
-
Hello @duncbro
Is the above formula returning an Unparseable? I notice you have a semicolon instead of a comma in your formula, whereas all other term separators are commas. It also looks like you have an extra parenthesis on the very end - notice it is black. The last parenthesis will be blue when you have the correct number of parentheses in your formula (this doesn't mean they are necessarily in the right place).
Does correcting those two syntax errors solve your problem?
Kelly
-
Yes it did, thank you. However, it did not return any values and I am sure the column contains duplicate values.
-
try this
=IF(COUNTIFS([SC#]:[SC#], <>"")>1,1)
sorry, I didn't pay attention to your @row criteria. You want it to look at all the cells so this is really reading @cell<>"" (No blank cells).
-
Thank you. The recommended formula highlighted all cells.
-
Sorry, @duncbro. The original formula formula with the @row should have worked- it was a brain blip on my part.
To be clear, this formula returns a zero
=IF(COUNTIFS([SC#]:[SC#], [SC#]@row)>1,1)
You should see a pink parenthesis for the CountIfs, and blue one enclosing the IF statement.
-
Thank you Kristy! That "=" is the game changer!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!