Identifying Duplicates within a column
Can someone tell me what I am doing wrong here?
=IF(COUNTIF([Name of Individual Impacted]@row:[Name of Individual Impacted]@row, [Name of Individual Impacted]@row1) > 1, 1)
I am trying to identify duplicate case names within my master sheet. Screenshot included below. I keep receiving the unparseable message. :(
Best Answer
-
Looks like you've got a 1 where it doesn't need to be (after [Name of Individual Impacted]@row) and your column reference doesn't need to include "@row". Try this:
=IF(COUNTIF([Name of Individual Impacted]:[Name of Individual Impacted], [Name of Individual Impacted]@row) > 1, 1)
You may also consider added to your formula something that excludes rows in which the name is blank, such as the following formula:
=IF(ISBLANK([Name of Individual Impacted]@row), "", IF(COUNTIF([Name of Individual Impacted]:[Name of Individual Impacted], [Name of Individual Impacted]@row) > 1, 1))
Hope this helps!:)
Answers
-
Looks like you've got a 1 where it doesn't need to be (after [Name of Individual Impacted]@row) and your column reference doesn't need to include "@row". Try this:
=IF(COUNTIF([Name of Individual Impacted]:[Name of Individual Impacted], [Name of Individual Impacted]@row) > 1, 1)
You may also consider added to your formula something that excludes rows in which the name is blank, such as the following formula:
=IF(ISBLANK([Name of Individual Impacted]@row), "", IF(COUNTIF([Name of Individual Impacted]:[Name of Individual Impacted], [Name of Individual Impacted]@row) > 1, 1))
Hope this helps!:)
-
@brianschmidt That worked! Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!