Loan Amortization in Google Sheets
Brent Allen
Instructor

Create filtered table
FILTER() formula to create a second table which is filtered for required periods.Hide with logical functions
IFS() formula to hide cells which are past the final amortization period.FILTER() _ hides rows or columns from a table based on specified conditions._
FILTER() formula. =FILTER(original table, opening balance column > 0)

2 reasons to hide a cell using an IFS() formula
=IFS($G243<0.01,""
,$A243="","",
If neither condition is met, use the formula for the column,$G243>0,sum(C244,-F244))

=IFS($G243<0.01,"",$A243="","",$G243>0,SUM(C244,-F244))
=IFS($G243<0.01,"",$A243="","",$G243>0,E244+H243)
ROW() formula for period.=IFS($G243<0.01,"",$A243="","",$G243>0,ROW()-3)
Loan Amortization in Google Sheets