Hi community,
I have separate sheets for tracking monthly budget and actual expenditures. They have identical layouts (see below).
Problem is, the budget goes to 2024, so I really need a formula that can calculate the variance between budgeted and actual. The logic would be something like:
=budget(where row = "Feas-591: Sample Preparation" AND column="10-21") - actual expenditures(where row = "Feas-591: Sample Preparation" AND column="10-21").
The logic for the formula of the cell to the immediate right would be:
=budget(where row = "Feas-591: Sample Preparation" AND column="11-21") - actual expenditures(where row = "Feas-591: Sample Preparation" AND column="11-21").
Could this be done with two index(match()) statements, or maybe there's a better way?