Identify duplicates in a column excluding blanks and a second criteria
bketch
✭✭
I am trying to identify duplicates excluding blanks and another criteria in the same column.
Exp. The column has phone numbers, blanks, and a word like Not Available
This is as far as I have gotten but cannot find a way to exclude the "Not Available" or make it 0 as well.
I have identified dupes and blanks so far...
=IF([Phone]@row = "", 0, “COVP”, 0,IF(COUNTIFS([Phone]:[Phone], [Phone]@row) = 1, 0, 1))
I appreciate any help!
Answers
-
Hey @bketch
If I understand your request, you only want the formula to run when the row contains a number, and not when the row contains words or blanks? If I understood correctly, then try this.
=IFERROR(IF(ISNUMBER(VALUE(LEFT(Phone@row, 3))), 1), 0)
Will this work for you?
Kelly
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 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!