+ Reply to Thread
Results 1 to 5 of 5

need help with three case scenarios using rate function to calculate interest payments

  1. #1
    Registered User
    Join Date
    11-11-2014
    Location
    Ontario, Canada
    MS-Off Ver
    2010
    Posts
    57

    Post need help with three case scenarios using rate function to calculate interest payments

    I need help for this scenario

    I have gotten the first scenario but can't seem to get the next two, Questions: In this third scenario, I only make a down payment of $20,000 and i'm forced to make payments of $8,000 a month over 4 years. I need to use the Rate function in cell I10 to figure out how much my interest payments are and then fill in the supporting data in cells I4, I13 and I14. The document is on the 2nd sheet in the attachment named Goal seek.
    Attached Files Attached Files
    Last edited by MysJee; 11-12-2014 at 09:54 PM.

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,612

    Re: Pls help with Excel advanced functions

    Your post does not comply with Rule 1 of our Forum RULES. Your post title should accurately and concisely describe your problem, not your anticipated solution.

    Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.

    To change a Title go to your first post, click EDIT then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.

    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)
    Ben Van Johnson

  3. #3
    Registered User
    Join Date
    11-11-2014
    Location
    Ontario, Canada
    MS-Off Ver
    2010
    Posts
    57

    Re: need help with three case scenarios using rate function to calculate interest payments

    Ok will do

  4. #4
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: need help with three case scenarios using rate function to calculate interest payments

    It is unclear whether you are still looking for an answers to the third scenario. And it's unclear which thread we should respond: one thread is marked "solved", and a moderator has complained about the other thread. I will duplicate this response. But you should choose only one thread to continue the discussion.

    For my comments below, refer to the worksheet "Scenarios (corrected") in the Excel file "A2-1402-F14-Q2-2-1 MOD.xlsx" attached below.

    Quote Originally Posted by MysJee View Post
    In this third scenario, I only make a down payment of $20,000 and i'm forced to make payments of $8,000 a month over 4 years. I need to use the Rate function in cell I10 to figure out how much my interest payments are and then fill in the supporting data in cells I4, I13 and I14.
    The formula in I10 should be:

    I10, periodic rate: =RATE(I11,I12,-I9)

    Note that this is a periodic rate. So the formula in I4 (annual rate) should be:

    I4, annual rate: =I10*I6

    The other formulas should be:

    I13, total repayment: =I12*I11
    I14, total interest: =I13-I9

    If you insist on using CUMIPMT, note the comments about your misuse of it below.

    Quote Originally Posted by MysJee View Post
    In the first scenario, you only have $8,000 available as a monthly payment; use Goal Seek to see how months it will take to pay off the loan. Format this value using two decimal places.
    I know the assignment requires that you use Goal Seek. But FYI, you can calculate the number of payments (C11) directly with the following formula:

    C11, number of payments: =NPER(C10,8000,-C9)

    Nitpick.... If you do use Goal Seek, the "by changing" cell should be C11, with the formula =C11/C6 in C5 (years).

    The reason is: usually, the Goal Seek result is approximate. There is less numerical error by aproximating the number of periods, then dividing by periods per year. In effect, you are dividing (reducing) the numerical error as well.

    It makes little difference in this scenario. But the principle might be useful and more important in other examples.

    Your use (or the instructor's use) of CUMIPMT in C14 is incorrect. At a minimum, the last parameter should be 0 instead of 1, to wit:

    C14, total interest: =-CUMIPMT(C10,C11,C9,1,C11,0)

    The reason is: usually, loan payments are in arrears; that is, at the end of the period. [EDIT] Moreover, it is consistent with how you use PMT in C12 and F12.

    However, note that in this scenario, the number of payments (C11) is not an integer. In that case, CUMIPMT returns the wrong value(!). In effect, it is as if the call were -CUMIPMT(C10,C11,C9,1,INT(C11),0). That fails to account for interest paid in the last payment, after payment #58 in this example.

    The formulas in C13 and C14 should be:

    C13, total repayment: =C12*INT(C11)+FV(C10,INT(C11),C12,-C9)*(1+C10)
    C14, total interest: =C13-C9

    In other words, total interest is total repayment minus total principal (loan amount).

    That formula in C13 assumes the payment is at the end the last (fractional) period. I believe that is consistent with common loan practice, since the borrower's cash flow situation might require it. However, that does depend on the lender's policies.

    If you want to prorate the interest for the last fractional period, the formula in C13 might be:

    =C12*INT(C11)+FV(C10,INT(C11),C12,-C9)*(1+C10*MOD(C11,1))

    Quote Originally Posted by MysJee View Post
    In the second scenario, you only want to pay a total of $30,000 in interest; use Goal Seek to establish the interest rate you would to negotiate to achieve this. Format two decimal places.
    What appears in your Excel file is completely wrong. The total interest is not $30,000.

    If the assignment requires that you use Goal Seek, "set cell" should be F14, "to value" should 30000. "By changing" should be F10 (periodic rate), not F4 (annual rate), again to minimize numerical error.

    However, FYI, you can calculate the rate directly as follows:

    F4, annual rate: =F10*F6
    F10, periodic rate: =RATE(F11,F12,-F9)
    F12, payment: =(30000+F9)/F11

    Again, instead of using CUMIPMT, the formulas in F13 and F14 should be:

    F13, total repayment: =F12*F11
    F14, total interest: =F13-F9

    But if you must use CUMIPMT, remember that the last parameter should be 0, not 1, to wit:

    F14: =-CUMIPMT(F10,F11,F9,1,F11,0)

    In this case, CUMIPMT returns the correct total interest because F11 (number of payments) is an integer.

    The formula for payment in F12 is derived from the simpler formulas in F13 and F14, to wit:

    totalInterest = totalRepayment - loanAmount
    3000 = F12*F11 - F9
    F12 = (3000 + F9) / F11
    Attached Files Attached Files
    Last edited by joeu2004; 11-13-2014 at 03:11 PM.

  5. #5
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: need help with three case scenarios using rate function to calculate interest payments

    PS.... I forgot to mention my favorite nitpick.

    You are calculating or using the annual interest rate, not the APR.

    They are different when there are additional initial costs, for example down payments.

    I won't confuse you with the differences in computation.

    But I wanted to mention it: (1) because it might confuse others who might contribute, as it did me; and (2) just in case it is relevant to the assignment (I don't think so).

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Using Functions with Advanced Filter
    By Acorn07 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 07-25-2013, 08:57 AM
  2. [SOLVED] Advanced filtering by using functions only
    By Nighteg in forum Excel General
    Replies: 5
    Last Post: 04-12-2012, 08:30 AM
  3. Advanced weblink functions.
    By Lars A S in forum Excel General
    Replies: 1
    Last Post: 02-01-2007, 10:15 AM
  4. Advanced Date Functions
    By enright_m in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-26-2005, 12:05 PM
  5. [SOLVED] Advanced Count functions
    By Ben Blair in forum Excel General
    Replies: 4
    Last Post: 05-26-2005, 05:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1