Hi, has anyone ever built a Categories sheet based on quarters instead of months (and updated all sheets that are based on the Categories). It would be easier at this point in my life to budget by quarters, but but everything about the Tiller solution is based on months.
Thanks!
A solution I use to budget a lot easier for quarterly expenses (for example my sewer bill is $100 each quarter). I like to save the right amount each month so then when the bill is due each quarter I have it. I use the Budget Plan sheet. Under the “Frequency” header in that sheet(Column H), set it to Monthly-AVG-Year. Then under the “Mult” header(column I), put 3. Then if you go to column Z for that expense, it will give you that quarterly expenses divided into monthly. If you enter that number on your Categories sheet, you then have your quarterly expenses turned into a monthly one, while still coming out the same quarterly. I hope that helps!
I’ve noticed the “Category Tracker” tab, (if you add that sheet) allows you to view your expenses by any date range by typing in start date and end date. So 1/1/2024 thru 3/31/2024 shows all expenses by quarter. This doesn’t answer your specific question about budgeting but thought I’d mention it. I like “category tracker” sheet much more than the default “spending trends” tab.
@fyfrod I’d also suggest to perhaps try the Category Tracker as @darrenmcbride61 did. I think that level of control could work for your purposes.
Great question, I also have a preference to view by quarters instead of months or years. I have not built it and was searching the community for the most elegant way to accomplish this. I initially was using a sumif in the monthly tracker, but like you wanted to expand it to other sheets. I considered adding a column to Transactions sheet for quarters, but then I would need to add calculations into all of the other sheets. I feel there must be a more simple solution with less adjustments that leverages what is already in place for the monthly dropdown lists. I am imaging a way to add the quarters as an additional option where months are in the dropdown, this would give maximum optionality on how to view. I think we have to define that Q1 = Month 1-3 etc.
I added this array to the transactions sheet. It seems like it should work but every month is reporting Q3, maybe someone knows why and can assist?
=arrayformula(if(isblank(B:B), “”, if(row(B:B)=1,“Quarter”,“Q”&INT((MONTH(B2)+2)/3))))
Oh this works. @fyfrod you can add this to your transactions sheet and at least build off of it unless others come with a better solution
=arrayformula(if(isblank(B:B), “”, if(row(B:B)=1,“Quarter”,“Q”&INT((MONTH(B:B)+2)/3))))
Thanks for sharing this formula!