PC Review


Reply
Thread Tools Rate Thread

How can I calculate a due interest of annuities for a certain peri

 
 
=?Utf-8?B?Um9iZXJ0IEdvbGph?=
Guest
Posts: n/a
 
      5th Jul 2007
I have an annuity plan for let's say 5 years with 60 monthly installments
with a financing amount of 10.000 € and 10 % interest rate. The payment plan
starts in March 2007. Is it somehow possible to calculate with a formula, how
much interest I will have to pay just for the periode from March till
December in the first year? That means only for 9 month.

Thanks in advance for your answers!
Robert
 
Reply With Quote
 
 
 
 
Bernie Deitrick
Guest
Posts: n/a
 
      5th Jul 2007
Robert,

Array enter (enter using Ctrl-Shift-Enter) the formula

=SUM(IPMT(10%/12,ROW(INDIRECT("1:9")),60,-10000,0))

The "1:9" is used to tell the function to sum the interest payments for periods 1 to 9. Next year,
you would use
10:21 for those twelve months...

HTH,
Bernie
MS Excel MVP


"Robert Golja" <(E-Mail Removed)> wrote in message
news:49630AF3-0F89-469E-9609-(E-Mail Removed)...
>I have an annuity plan for let's say 5 years with 60 monthly installments
> with a financing amount of 10.000 ? and 10 % interest rate. The payment plan
> starts in March 2007. Is it somehow possible to calculate with a formula, how
> much interest I will have to pay just for the periode from March till
> December in the first year? That means only for 9 month.
>
> Thanks in advance for your answers!
> Robert



 
Reply With Quote
 
=?Utf-8?B?Um9iZXJ0IEdvbGph?=
Guest
Posts: n/a
 
      5th Jul 2007
Hi Bernie,

thanks a lot for your answer. when I enter the proposed formula in a cell I
get "83" as a result whereby the correct sum should be somewhere around 766.
Did I do something wrong?

best regards,
Robert

"Bernie Deitrick" wrote:

> Robert,
>
> Array enter (enter using Ctrl-Shift-Enter) the formula
>
> =SUM(IPMT(10%/12,ROW(INDIRECT("1:9")),60,-10000,0))
>
> The "1:9" is used to tell the function to sum the interest payments for periods 1 to 9. Next year,
> you would use
> 10:21 for those twelve months...
>
> HTH,
> Bernie
> MS Excel MVP
>
>
> "Robert Golja" <(E-Mail Removed)> wrote in message
> news:49630AF3-0F89-469E-9609-(E-Mail Removed)...
> >I have an annuity plan for let's say 5 years with 60 monthly installments
> > with a financing amount of 10.000 ? and 10 % interest rate. The payment plan
> > starts in March 2007. Is it somehow possible to calculate with a formula, how
> > much interest I will have to pay just for the periode from March till
> > December in the first year? That means only for 9 month.
> >
> > Thanks in advance for your answers!
> > Robert

>
>
>

 
Reply With Quote
 
Bernie Deitrick
Guest
Posts: n/a
 
      5th Jul 2007
Robert,

Yes, you did something wrong. You need to use Ctrl-Shift-Enter instead of just Enter. Excel will
but curly braces around the formula if you do this correctly.

{=SUM(IPMT(10%/12,ROW(INDIRECT("1:9")),60,-10000,0))}

DO NOT enter the formula with the {}'s.

The other thing you can do is use

=IPMT(10%/12,ROW(A1),60,-10000,0)

in a cell, and copy down for a total of 9 rows, then use the SUM function on those cells. That way,
you will see what each month's interest payment is.

HTH,
Bernie
MS Excel MVP


"Robert Golja" <(E-Mail Removed)> wrote in message
news:52EE912E-2EC3-4939-AB16-(E-Mail Removed)...
> Hi Bernie,
>
> thanks a lot for your answer. when I enter the proposed formula in a cell I
> get "83" as a result whereby the correct sum should be somewhere around 766.
> Did I do something wrong?
>
> best regards,
> Robert
>
> "Bernie Deitrick" wrote:
>
>> Robert,
>>
>> Array enter (enter using Ctrl-Shift-Enter) the formula
>>
>> =SUM(IPMT(10%/12,ROW(INDIRECT("1:9")),60,-10000,0))
>>
>> The "1:9" is used to tell the function to sum the interest payments for periods 1 to 9. Next
>> year,
>> you would use
>> 10:21 for those twelve months...
>>
>> HTH,
>> Bernie
>> MS Excel MVP
>>
>>
>> "Robert Golja" <(E-Mail Removed)> wrote in message
>> news:49630AF3-0F89-469E-9609-(E-Mail Removed)...
>> >I have an annuity plan for let's say 5 years with 60 monthly installments
>> > with a financing amount of 10.000 ? and 10 % interest rate. The payment plan
>> > starts in March 2007. Is it somehow possible to calculate with a formula, how
>> > much interest I will have to pay just for the periode from March till
>> > December in the first year? That means only for 9 month.
>> >
>> > Thanks in advance for your answers!
>> > Robert

>>
>>
>>



 
Reply With Quote
 
joeu2004
Guest
Posts: n/a
 
      5th Jul 2007
On Jul 5, 3:36Â*am, Robert Golja
<RobertGo...@discussions.microsoft.com> wrote:
> I have an annuity plan for let's say 5 years with 60 monthly installments
> with a financing amount of 10.000 € and 10 % interest rate. The payment plan
> starts in March 2007. Is it somehow possible to calculate with a formula,how
> much interest I will have to pay just for the periode from March till
> December in the first year? That means only for 9 month.


=CUMIPMT(10%/12, 60, 10000, 1, 9, 0)

If you get a #NAME error, look at the CUMIPMT help page for how to
install the Analysis ToolPak add-in.

If the ATP is not available to you, the following will compute the
total interest for the first 9 months, but not for any arbitrary
period:

=9*PMT(10%/12, 60, -10000) - (10000 - FV(10%/12, 9, PMT(10%/12, 60,
-10000),-10000))

Note: These formulas assume that monthly interest is computed by 10%/
12; that is, that interest compounds monthly.

PS: It is not difficult to modify the second formula to handle an
arbitrary period. But I think it is not worth over-complicating it
since I think (hope) it is unlikely that you will use it.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calculate interest on an investment darkwing_duck Microsoft Excel Worksheet Functions 6 25th Jul 2010 03:26 PM
How do I calculate interest? darkwing_duck Microsoft Excel Misc 1 4th Mar 2010 01:07 AM
How do I calculate Interest? naniwa Microsoft Excel Misc 3 19th May 2004 04:17 AM
How to calculate compound interest given table of dates/interest rate Mike Deblis Microsoft Excel New Users 1 4th Feb 2004 04:27 AM
How to calculate compound interest given table of dates/interest rate Mike Deblis Microsoft Excel Misc 1 4th Feb 2004 04:27 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:24 PM.