Live data from Hacker News

Spreadsheet formulas for personal finance

bou.ke

11–20 of 123 posts

Re: Spreadsheet formulas for personal finance

#11
While this spreadsheet and formulas are useful I found taking an Intro to Finance course to be more useful. Especially, because I have a purely engineering background

I've been recommending this course to my family and friends, https://www.coursera.org/learn/time-value-of-money

Re: Spreadsheet formulas for personal finance

#12
post #6

Hey - creator of BudgetSheet here ( https://www.budgetsheet.net/ ). These formulas are great! I am currently working on adding more charts, graphs, and formulas to my product. These formulas and handy to know about for a net worth sheet. Thanks for sharing!

I use Tiller for this. By initial comparison this looks more expensive with less features and a limit on total accounts, am I missing something? Tiller is a bit weak on tracking stocks in investment accounts.

Re: Spreadsheet formulas for personal finance

#13
post #9
post #8

Okay, now do one for taxes: given a taxable income, and a table representing the tax brackets, calculate the taxes owed in a single formula.

I think you could probably do this in a single formula with SUMPRODUCT, but right now I just have a table that uses MIN(0, X) and MAX(0, Y) tricks to calculate it.

AFAICT, SUMPRODUCT is insufficient, you need to provide different numbers to each row. I need a fold_left version of sumproduct.

Re: Spreadsheet formulas for personal finance

#15
Love these formulas and wish this information was more understood and accessible to people when making decisions. I've personally benefited a lot from a mortgage payoff spreadsheet I have. It's so easy to duplicate a tab, change the interest rate or additional payments and see what the long term impact is.

That being said, and a disclaimer that I created this, I have been charting my path to being able to retire early. I found it difficult when duplicating tabs to simulate different scenarios and keeping the tabs up-to-date with formula changes. If this speaks to any of you, then consider checking out the tool I made - I have not looked back at my old spreadsheets.

Sample forecast: https://fiers.co/forecast/6020f254b4e8c

Forecast comparison: https://fiers.co/forecasts/compare/6020f254b4e8c/60488472528...

Re: Spreadsheet formulas for personal finance

#16
These are awesome and exactly the kind of formulas I wish I would have been taught earlier on my life! I've personally been using a free spreadsheet-based tool called the Investment Portfolio Tracker by The Measure of a Plan (https://themeasureofaplan.com/investment-portfolio-tracker/) and it's been absolutely wonderful; it never ceases to amaze me how much power spreadsheets have. The author has other tools as well (https://themeasureofaplan.com/tools/) and is really responsive via email. Be sure to donate if you find value in his work as I did!

Re: Spreadsheet formulas for personal finance

#17
post #4

Interesting formulas to take my spreadsheets up a level. For anyone interested, I made a Google Sheets template that I share with my friends. It has been well-received. The crypto section can be ignored for those not involved with that sector. If it's useful, would love to hear your feedback. https://docs.google.com/spreadsheets/d/1qYLOAjzaIIcFLFw_j-P4... Of course, much can be automated using Google Finance and rele…

Thank you!

Re: Spreadsheet formulas for personal finance

#18
post #8

Okay, now do one for taxes: given a taxable income, and a table representing the tax brackets, calculate the taxes owed in a single formula.

Some form of the golden duo of INDEX and MATCH should do it in Excel.

I suspect you could do it with SUMPRODUCT too if the tax table contains sufficient data (e.g. for each band a lump-sum + progressive rate may be necessary) but it may still be an array equation (ctrl-shift-enter when entered, with curly braces displayed around it). I’m not in front of a PC so I can’t try to confirm.

Re: Spreadsheet formulas for personal finance

#19
post #10

I like XIRR to get an actual sense of what my annualized portfolio performance looks like. Pretty much every bank, brokerage, or financial software I've used is "dumb" and will a) count deposits as growth , b) show total lifetime growth, and/or c) ignore deposits. XIRR allows me to better benchmark portfolio performance by accounting for when I deposit (or withdraw) money so I can clearly say, "I'm earning X% per yea…

HealthEquity, where I keep my HSA account, manages to get this right. They use modified Dietz return which is easier to calculate than the IRR but remarkably similar.

I calculate the modified Dietz return for my other accounts too. It's easy enough that unlike IRR you don't need the function to be built in to the spreadsheet software to calculate it.

Re: Spreadsheet formulas for personal finance

#20
post #8

Okay, now do one for taxes: given a taxable income, and a table representing the tax brackets, calculate the taxes owed in a single formula.

Because I like a challenge:

  =SUMPRODUCT(
    (bracket_minbracket_max)*(bracket_max-bracket_min))
    )
    *bracket_rate
  )
Where income is your income, bracket_min is the range of bracket minimums, bracket_max is the range of bracket maximums, and bracket_rate is the range of bracket tax rates.

Demo on Google Sheets:

https://docs.google.com/spreadsheets/d/1z0vx8TJeWr-hbJ3q6E7r...

Post reply on HN