Greetings,
Does anyone know if there is a formula to automate RYG based on Variance? I am trying to track budget (not dates). I would like to show Red balls when a task is over budget.
Any ideas on the formula?
Thank you!
I think there are a variety of ways to accomplish what you are trying to do. Are you trying to figure variance on a row by row basis or by sum total of the entire budget for the sheet like for a roll-up?
Here are two examples of formulas you could use:
Row by Row: =IF(Actual@row > Budget@row, "Red", "Green")
Sum of Columns: =IF(SUM(Actual:Actual) > SUM(Budget:Budget), "Red", "Green")
You can see both of them at work in my screenshot below. Right click on it to open it in a new window. You can see the item flagging red, while the overall budget is still on track. Hope that helps!
Did this solution work for you?
Happy Thursday. I know many have asked this question before, but does anyone know of a way to have a column actively countdown time? Even if a plugin is needed, it will be considered. Here is what I'm looking to do. When a form is filled out and a new line is added to the sheet, I'd like the "Countdown Timer" column to…
I'm trying to pull in the contact information of a second HR Business Partner, contingent on the department of the individual, from a separate reference sheet. However, not all departments have a second HRBP— so if the column of "second HRBP contact info" is blank, I don't want anything to be pulled into the new sheet's…
I have an automation set up so that when the Status column changes to Complete, Canceled, or Not Needed, Smartsheet automatically updates the % Complete column to 100% (Text/Number column type). After that, another workflow should trigger to alert the next person that their task is ready. This worked fine before, but…