Can Smartsheet automatically highlight / notify if a reference appears on a sheet more than twice?
I am literally new and learning Smartsheet and have set up a customer order form but each customer can only have a maximum of 2 free orders so i was wondering if it is possible to automatically flag if the same reference appears a third time?
At the moment i am exporting to Excel and using a countif function to check for me
Thanks
Answers
-
Formula below should solve this, just change the column name to the column where you want to check for duplicates.
You can also create a checkbox column so it would show checked if it's true and unchecked if it's false.
=IF(COUNTIF([YOUR COLUMN]:[YOUR COLUMN],[YOUR COLUMN]@row)>2,1,0)
-
My suggestion would be to insert an auto-number column with no special formatting and then a helper column (flag type in this example) with something along the lines of...
=IF(COUNTIFS(Customer:Customer, @cell = Customer@row, [Auto-Number Column]:[Auto-Number Column], @cell <= [Auto-Number Column]@row) > 2, 1)
This will count how many times the customer has been previously input and start flagging when for the third an on.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!