In the new foundation template you have to change your annual budget (with no totals) in the categories sheet, and the yearly budget sheet (with the totals), won’t allow you to edit. That’s fine, I think to myself; I’ll just add a row to the top of the category sheet and total things manually on the category sheet.
except…when I add a row at the top, it seems to break all kinds of things everywhere. Is there a way to adjust to give us a row or two at the top for our own totaling purposes?
Hi @swhowiedash,
I would not recommend trying to add a row at the top of the Categories sheet.
The foundations template uses many formulas that rely on searching the first row of the Categories sheet for the Column names. If you put a row on top, that is going to break many of the sheets.
As an alternate, you could put some formulas to the right of the existing columns in the Categories sheet. That would not cause everything to break.
Unfortunately, what I want to do is put total income and total expenses amounts for each month, so off to the right wouldn’t really be helpful. I could possibly put at the bottom, but that would involve scrolling all the time to see as well. I was hoping there was a way to get this to populate better as it is the only real block to easily doing multi-month budgeting, imho.
I’m curious why not just using the Yearly Budget sheet as a planning tool to review the totals and cash flow, then just edit specific months in the Categories sheet to fine tune your budget. Maybe I’m missing something.
Heather, as my wife and I are filling out and adjusting our zero balance budget for the month, I find myself switching back and forth 10-20+ times as we negotiate category amounts to see how my changes are affecting our budget totals. In the old monthly budget, we could see the changes reflected at the top almost immediately without having to change views. In addition, the category sheet just doesn’t look quite the same as the yearly budget. I know I’m splitting hairs about most of this, but it is an adjustment to switch back and forth and we want the tool to not get in the way of our process. If I can get the totals at the top of the category sheet (still working on the sumif or what it will take to get the type of expense to be negative for zero sum) that would go a long way toward a working, annual budget nirvana. The annual budget sheet is beautiful and we will still look at it for an overview, but we just can’t work from it.
@swhowiedash.
If the Column name is in row 1, and you put the formula in row 2, have you tried this formula: =sum(E3:E)
(example for Column E)
I’m not sure what you mean by “get the type of expense to be negative for zero sum”.
To switch from a positive to a negative number or a negative to a positive, try: = -1 * sum(E3:E)
Well in the categories sheet, all numbers, whether expense or income, are listed as positive numbers. To do a zero sum calc, you either have to tally the expense numbers separately and subtract from the income total, or I figured I could do what I do in a database, i.e.
x = x + iif(C=“Expense”,0-E,E)
for each row in the E column
this would add the income and subtract the expenses. A balanced budget would come to zero.