This post from @catpatriciamorgan got me thinking about adding progress bars to the Savings Budget.
So, I gave it a try in my personal spreadsheet…
If you’re interested in implementing this…
- Insert a new column between
ACTUAL
andAVAILABLE
. I called itPROGRESS
in the header. - Insert this formula in
F8
and drag/expand it down to the bottom.
=IFERROR(
IF(or(N8="Expense",M8="Expense",and(M8="Type",B8="EXPENSE")),
IF(E8+1<=D8+C8,
SPARKLINE({if(isblank(E8),0,E8)},{"charttype","bar";"max",D8+C8;"color1","#2e86de"}),
SPARKLINE({D8+C8,E8-D8-C8},{"charttype","bar";"max",E8;"color1","#69c569";"color2","#de4c60"})),
IF(or(N8="Income",M8="Income",and(M8="Type",B8="INCOME")),
IF(E8<=D8-C8,
SPARKLINE({if(isblank(E8),0,E8),D8-C8-E8},{"charttype","bar";"max",D8-C8;"color1","#2e86de";"color2","#de4c60"}),
SPARKLINE(E8,{"charttype","bar";"max",E8;"color1","#69c569"})),
IFERROR(1/0))))
Let me know if this works for you or if you have any improvements.