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?
I'm wondering if anyone has worked out a dynamic formula to return the date of the 'next' Thursday of the month. I have a worksheet where I need to send out a reminder to a contacts in a contact column in the worksheet each Thursday of the current month if a criteria has not been met. When criteria has been met, then…
Hello, I have the formula to check a box for line items with the current month. =IF(AND(YEAR(Date@row ) = YEAR(TODAY()), MONTH(Date@row ) = MONTH(TODAY())), 1, 0) Trying to set up a report for all items with the previous month (i.e. 1 month prior to current). How can I modify to check the box?
Please help, I have a few of these to do. I have a nested IF formula. The first part is an INDEX/MATCH and works as a standalone. The next few are INDEX/COLLECT. These are not working as standalone or in the nested version (Unparsable Error). Any ideas? =IF(CONTAINS(“A/V”, [Vendor Type]@row ), INDEX(COLLECT({Date Secured…