-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Payee support #1
Comments
@mattalco it looks like you aren't a contributor or watcher for this repo, tagging you in case you didn't see this. |
Hello, I looked at your work and think it adds some good functionalities... I love the Payee column (I was missing this too, coming from YNAB). The Balance sheet and the reports are great too. Just one comment: Something to consider maybe in the future (I don't know much programming so it is just wishful thinking at this point), would be to add a budget template sheet that would fill up category transfer at the click of a button. Paycheck 1 - (amount expected for reference) Paycheck 2 - (amount expected for reference) Paycheck 3 - (amount expected for reference) Wouldn't that be neat ?! |
Thanks for your comment, great catch on the configuration issue! In terms of the project being dead, the author said he's on sabbatical and feels good with its current state. IMO I like it this way - it's the reason I switched away from the YNAB subscription which keeps funding new development. My workflow doesn't need new development any more, I just need it to stay the way it already is. There are a couple of reddit posts on automated category transfers, here's an example. I might share my simpler version later. |
Hi there,
I really love this spreadsheet! It's so advanced and fully featured, I've switched from YNAB to Aspire for about a month now. The only thing I miss from YNAB is payee support. Properly tracking the payee is more than adding a note in the memo field, since you can build a bunch of cool reports with it. I've spent a few hours at it and here's my modification.
Feel free to make a copy of this and inspect.
https://docs.google.com/spreadsheets/d/1cfFQzQf6NYSLnxBPZJARIRsfEgao1GV-qp3DaMk-bYQ/edit?usp=sharing
Here's a quick walkthrough of the changes:
Transactions and 'My Transactions' sheet
In the official version, users are supposed to manually enter transactions in the
Transactions
sheet. Since there are too many formulas and named ranges that depend on this sheet and its column structure, I created aMy Transactions
sheet.The
My Transactions
sheet follows the column order of YNAB, which is payee, category, memo, outflow, inflow, and status. This is my preference as I have 5+ year muscle memory of YNAB. The oldTransactions
sheet is automatically populated fromMy Transactions
, it is therefore hidden and not supposed to be touched at all. The purpose of keepingTransactions
is to maintain all calculations and named ranges that are defined with it. I've removed all the conditional formatting on theTransactions
sheet since it's hidden, this improves the performance a bit.The
PAYEE
column onMy Transactions
is free to edit but also has data validations. I've defined aPayees
named range which is the new columnAQ
on the hiddenBackendData
sheet. This is defined as a combination of:Payment: <credit card account>
for each credit card accountTransfer: <bank account>
for each bank accountNow the memo column can be used for actual memo!
Balances
The
Balances
sheet has been updated to include payees. This is better because now you can see where your "Account Transfer" transactions are going. Are they credit card payments? Or just to another bank account? Without payees, I'm clueless about these transfers.Income vs Expense report
I've spent a lot of time on this, since this is the biggest thing I'm missing from YNAB and I use it every month. I just can't live without this!
This is an extension to your
Category Reports
sheet. With payee support, we can list out all the income sources. And we can calculate total income, total expenses, and net income which is "did I actually save money this month".New spending report
You know what else you can do with payees? This new report lets you pick a date range and a category, and it will display 4 charts.
Net Worth Report and Net Worth Helper
This isn't payee related, but I thought I'd share as well. It doesn't make sense to me to manually enter my liquid assets (bank accounts) every month when the sheet already has the data, so I created a helper sheet to calculate it for me. Personally, in the helper sheet I also use
IMPORTRANGE
to pull in stuff from my investment tracking sheets, but I have not included those in this example.A word on migrating from the official sheet
If you're already a long time user of the public version, you might find it very difficult to migrate because you'd have to manually add in payees for all your transactions. With that said, payees are optional, so you can leave those out for old transactions, and only start adding payees for new transactions.
As explained in the "Transactions and 'My Transactions' sheet" section, you should not touch the
Transactions
sheet at all. So the migration step is:Category Transfers
.Transactions
sheet column by column into theMy Transactions
tab. Note that "column by column" is important since the columns are changed. Practically this means pasting all the dates, then account, then category, memo, etc with the "Paste value only" option.The text was updated successfully, but these errors were encountered: