Column Adding up to a certain number

Options

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

  • heyjay
    heyjay ✭✭✭✭✭
    Options

    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, "🚩", "👍")
    

    ...

  • Lauren S
    Options

    @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.

  • heyjay
    heyjay ✭✭✭✭✭
    Options

    Oh, so not the row?

    =IF(SUM([Increase Amount]:[Increase Amount]) > 50000, "Yes", "No")
    

    ...

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!