Which Financial Function?

Arie Bos

Board Regular
Joined
Mar 25, 2016
Messages
224
Office Version
  1. 365
Platform
  1. Windows
As a non-financial guy, I am struggling a bit with the following:

I want to calculate a lease-back situation:
  1. amount: 800,000
  2. interest: 5%
  3. Years: 5 (but could vary)
So, 5% over 800,000 = 40,000. So, after 5 years, we must have paid back 800,000 + (5*40,000) = 1,000,000, I think.

Which is the correct function to use to calculate the monthly amount to have paid back the 1,000,000 after 60 months? There are so many functions in excel, but without proper understanding of financial models, I don't know which one to use for this.

Many thanks,
Arie
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
you have to pay yearly 184.780€, as shown in B5, in total you paid 123.899€ interest + initial 800.000 = 923.899€
For the real calculation see right hand side.
Map1
ABCDEFGH
1amount800 000,00 €
2percentage5%year amount interest payment
3years50800 000,00
41655 220,1640 000,00- 184 779,84
5yearly payment-184 779,84 €2503 201,3332 761,01- 184 779,84
63343 581,5625 160,07- 184 779,84
74175 980,8017 179,08- 184 779,84
85-8 799,04- 184 779,84
9total123 899,19- 923 899,19
10
Blad1
Cell Formulas
RangeFormula
G4:G8G4=+F3*$B$2
H4:H8H4=+$B$5
G9:H9G9=SUM(G4:G8)
B5B5=PMT(B2,B3,B1)
F4:F8F4=+F3+G4+H4
 
Upvote 0
Hi...

Is this maybe what you are looking for? IPMT is Excel's interest payment function. It returns the interest amount of a loan payment in a given period, assuming the interest rate and the total amount of a payment are constant in all periods.


Excel Formula:
=IPMT(B1/12, 1, B2*12, B3)

Screenshot 2022-07-21 231059.pngScreenshot 2022-07-21 231127.png
 
Upvote 0
The question is a bit ambiguous as the OP first states 5 years but then says 60 months. From my experience, usually payments are made by the month. That said I get this schedule.

Amortization Schedule.xlsm
ABCDEFGHI
1Amount800,000.00
2Percentage0.004167MonthAmountInterestPayment
3Months600800,000
41788,236.353,333.33-15,096.99
5Monthly Payment ($15,096.99)2776,423.683,284.32-15,096.99
63764,561.793,235.10-15,096.99
74752,650.483,185.67-15,096.99
85740,689.533,136.04-15,096.99
96728,678.753,086.21-15,096.99
107716,617.933,036.16-15,096.99
118704,506.852,985.91-15,096.99
129692,345.312,935.45-15,096.99
1310680,133.092,884.77-15,096.99
1411667,869.992,833.89-15,096.99
1512655,555.802,782.79-15,096.99
1613643,190.292,731.48-15,096.99
1714630,773.272,679.96-15,096.99
1815618,304.502,628.22-15,096.99
1916605,783.782,576.27-15,096.99
2017593,210.892,524.10-15,096.99
2118580,585.622,471.71-15,096.99
2219567,907.742,419.11-15,096.99
2320555,177.042,366.28-15,096.99
2421542,393.292,313.24-15,096.99
2522529,556.272,259.97-15,096.99
2623516,665.772,206.48-15,096.99
2724503,721.562,152.77-15,096.99
2825490,723.412,098.84-15,096.99
2926477,671.102,044.68-15,096.99
3027464,564.411,990.30-15,096.99
3128451,403.111,935.69-15,096.99
3229438,186.971,880.85-15,096.99
3330424,915.761,825.78-15,096.99
3431411,589.261,770.48-15,096.99
3532398,207.231,714.96-15,096.99
3633384,769.441,659.20-15,096.99
3734371,275.651,603.21-15,096.99
3835357,725.651,546.98-15,096.99
3936344,119.191,490.52-15,096.99
4037330,456.031,433.83-15,096.99
4138316,735.941,376.90-15,096.99
4239302,958.691,319.73-15,096.99
4340289,124.031,262.33-15,096.99
4441275,231.731,204.68-15,096.99
4542261,281.541,146.80-15,096.99
4643247,273.221,088.67-15,096.99
4744233,206.541,030.31-15,096.99
4845219,081.25971.69-15,096.99
4946204,897.10912.84-15,096.99
5047190,653.85853.74-15,096.99
5148176,351.26794.39-15,096.99
5249161,989.07734.80-15,096.99
5350147,567.03674.95-15,096.99
5451133,084.91614.86-15,096.99
5552118,542.44554.52-15,096.99
5653103,939.38493.93-15,096.99
575489,275.48433.08-15,096.99
585574,550.47371.98-15,096.99
595659,764.11310.63-15,096.99
605744,916.14249.02-15,096.99
615830,006.30187.15-15,096.99
625915,034.34125.03-15,096.99
63600.0062.64-15,096.99
64
65Total105,819.21-905,819.21
66
Sheet1
Cell Formulas
RangeFormula
B2B2=0.05/12
F4:F63F4=+F3+G4+H4
G4:G63G4=+F3*$B$2
H4:H63H4=+$B$5
B5B5=PMT(B2,B3,B1)
G65:H65G65=SUM(G4:G63)
 
Upvote 0
BSALV, JimmyPop and iGold, Thank you all for your efforts and your very clear answers. Much appreciated!

We will pay per month, so the amount of 15,096,99 seems correct to me.
 
Upvote 0

Forum statistics

Threads
1,215,129
Messages
6,123,218
Members
449,091
Latest member
jeremy_bp001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top