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.
Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!