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
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 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!