I am working on some budget tracking. I have a source sheet with each expense account and how much is budgeted for each month (Jan-Dec) and it goes back years. I want to display the info on a graph that show Jan-Dec and the sum of all expense account budgeted amounts in each cell. Right now in my metric sheet I have the following formula:
Jan Budgeted Amount=SUMIFS({ExpenseAccountsBudgetMaster_JAN}, {ExpenseAccountsBudgetMaster_Year}, Year@row)
I have to duplicate this for Feb Budget and so on, changing the column reference to {ExpenseAccountsBudgetMaster_FEB} etc.
Is there a way to choose the whole range and have an additional condition to choose column referencing the month number? So the formula in the cell could be a column formula?
I want it to function something like this, but I know Sumifs won't do this:
=Sumifs({ExpenseAccountsBudgetMaster_JAN-DEC},Column number,[Mo#]@row, {ExpenseAccountsBudgetMaster_Year}, Year@row)
If I can get this to work, then I'll be able to use this to do a rolling 12 months analysis. I already have dynamic formulas to populate the month and year, but don't know how to pull the budget information in.
Thanks for the help!