Column Adding up to a certain number
Hello, we are using Smartsheet to process our annual merit for all employees.
We have a column for Increase Amount - which will be a number value that the employees salary is being increased by. Since each manager will have a budget for their area, is there a way to set a trigger that if the values in that column go over a certain amount (say, 50,000) that it can flag the column? We are trying to find a way so the manager is aware they have gone over budget.
Answers
-
You can use conditional formatting, which is this icon in the tool bar
Or you can use a helper column with this formula,
=IF([Increase Amount]@row > 50000 , "Yes", "No") or =IF([Increase Amount]@row > 50000, "🚩", "👍")
...
-
@heyjay - would this take into account all numbers in the column, though? the column might consist of 2000, 1000, 1500 - so I want it to flag once the total of all the numbers in the column go over 50,000.
-
Oh, so not the row?
=IF(SUM([Increase Amount]:[Increase Amount]) > 50000, "Yes", "No")
...
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!