Column Formulas for Duplicates

Identifying duplicates with consideration of blanks
This is the formula I am using to identify duplicates and trying to omit blanks and it is giving me a syntax error, can someone please help?
Also, could I make this a column formula?
=IF(ISBLANK([Folder Name]),"", IF(COUNTIF([Folder Name]:[Folder Name], [Folder Name]@row) > 1, 1, 0)
Best Answer
-
Hi @Katrina Liu
It looks like you forgot an '@row' at the beginning of your formula. This should allow you to convert to a column formula.
=IF(ISBLANK([Folder Name]@row),"", IF(COUNTIF([Folder Name]:[Folder Name], [Folder Name]@row) > 1, 1, 0))
cheers
Answers
-
Hi @Katrina Liu
It looks like you forgot an '@row' at the beginning of your formula. This should allow you to convert to a column formula.
=IF(ISBLANK([Folder Name]@row),"", IF(COUNTIF([Folder Name]:[Folder Name], [Folder Name]@row) > 1, 1, 0))
cheers
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 449 Global Discussions
- 155 Industry Talk
- 505 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 514 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!