Flag duplicate titles but not if the title is blank
Hiya, I am trying to write a formula that flags entries if the content of the title column is repeated, but I need it to ignore entries that have a blank title. My current one is:
=IF(COUNTIFS([Conference Title]:[Conference Title], [Conference Title]@row > 1, [Conference Title]:[Conference Title], [Conference Title]@row) = "", 1, 0)
The syntax is correct, but it doesn't flag any entries, even when I can see duplicates.
I think the solution is simple and staring me in the face, but I can't seem to get it.
Best Answer
-
Try this:
=IF(AND([Conference Title]@row <> "", COUNTIFS([Conference Title]:[Conference Title], [Conference Title]@row)> 1), 1)
Answers
-
Try this:
=IF(AND([Conference Title]@row <> "", COUNTIFS([Conference Title]:[Conference Title], [Conference Title]@row)> 1), 1)
-
That worked a charm, thank you so much!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 361 Global Discussions
- 199 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!