Discussion about interest calculation
For me, my own calculation of MA interest is only 1 cent different.
Formula as
=ROUNDDOWN(SUM(Jan to June balance)/12 * 0.04 + SUM(July to Sept balance) / 12 * 0.0401 + SUM(Oct to Dec balance) / 12 * 0.0404, 2)
month balance is calculated as the lowest balance of any time within the month. If contribution is before deduction, only the difference is reduced if deduction is more than contribution, or 0 deducted
However, my SA interest difference is more than $2. Same formula with additional 60K for extra 1%
=ROUNDDOWN(SUM(Jan to June balance)/12 * 0.04 + SUM(July to Sept balance) / 12 * 0.0401 + SUM(Oct to Dec balance) / 12 * 0.0404, 2) + 60000 * 0.01
ETA:
adding kehyi4's formula, it works for me and for the past few years, too
MA = ROUND(month balance * MA interest rate / 12, 2) then sum for all 12 months
SA = ROUND(month balance * SA interest rate / 12, 2) then sum for all 12 months + 60000 * 0.01
OA = ROUND(month balance * OA interest rate / 12, 2) then sum for all 12 months
MA interest rate for 2023: Jan - June 4%, July - Sept: 4.01%, Oct - Dec:4.04%
SA interest rate for 2023: Jan - June 4%, July - Sept: 4.01%, Oct - Dec:4.04%
OA interest rate for 2023: 2.5%
month balance is the lowest balance within the month
For me, my own calculation of MA interest is only 1 cent different.
Formula as
=ROUNDDOWN(SUM(Jan to June balance)/12 * 0.04 + SUM(July to Sept balance) / 12 * 0.0401 + SUM(Oct to Dec balance) / 12 * 0.0404, 2)
month balance is calculated as the lowest balance of any time within the month. If contribution is before deduction, only the difference is reduced if deduction is more than contribution, or 0 deducted
However, my SA interest difference is more than $2. Same formula with additional 60K for extra 1%
=ROUNDDOWN(SUM(Jan to June balance)/12 * 0.04 + SUM(July to Sept balance) / 12 * 0.0401 + SUM(Oct to Dec balance) / 12 * 0.0404, 2) + 60000 * 0.01
ETA:
adding kehyi4's formula, it works for me and for the past few years, too
MA = ROUND(month balance * MA interest rate / 12, 2) then sum for all 12 months
SA = ROUND(month balance * SA interest rate / 12, 2) then sum for all 12 months + 60000 * 0.01
OA = ROUND(month balance * OA interest rate / 12, 2) then sum for all 12 months
MA interest rate for 2023: Jan - June 4%, July - Sept: 4.01%, Oct - Dec:4.04%
SA interest rate for 2023: Jan - June 4%, July - Sept: 4.01%, Oct - Dec:4.04%
OA interest rate for 2023: 2.5%
month balance is the lowest balance within the month
Last edited:
