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
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!