+ Reply to Thread
Results 1 to 8 of 8

Loan Amortization Schedule

  1. #1
    Registered User
    Join Date
    06-14-2007
    Posts
    4

    Loan Amortization Schedule

    I am pretty much a novice Excel user and am trying to make a loan amortization schedule for a few Realtors. What I am looking to do is have column B display interest rates vertically, column 2 display loan amounts horizontally, and the corresponding inner columns display the resulting payments. I would like to do this with 2 different spreadsheets...a standard 360 month amortization and an interest only scenario. What do I need to do to get the boxes to display the payments automatically when I enter the rate and loan amount into the columns?

    For Example:

    ____$100,000
    5% - $536.82

  2. #2
    Forum Expert
    Join Date
    12-29-2004
    Location
    Michigan, USA
    MS-Off Ver
    2013
    Posts
    2,208
    Hi, Colin. It sounds like the first cell that you would like to show a payment is C3. If you copy this formula into C3, then fill down and across, it will show a 360-month payment for each rate and loan amount.

    =PMT($B3/12,360,-C$2)

    HTH

    Jason

  3. #3
    Registered User
    Join Date
    06-14-2007
    Posts
    4
    Thank you very much Jason,the formula works perfectly for amortization Excel seems to recognize the pattern and auto adjusts for the different cells when I copy/paste the formula throughout the document. Saved me loads of time. I appreciate the time you took to help me.

    Would the formula for interest only be similar?

  4. #4
    Forum Expert
    Join Date
    12-29-2004
    Location
    Michigan, USA
    MS-Off Ver
    2013
    Posts
    2,208
    It should be, but unfortunately, I do not know the formula for an interest only loan.

  5. #5
    Registered User
    Join Date
    06-14-2007
    Posts
    4
    It is much easier than amortization.
    (loan amount*interest rate/12= Monthly Interest Payment)

    Using a similar cell structure as the one you did for the amortization, how would excel want this to look?

  6. #6
    Forum Expert
    Join Date
    12-29-2004
    Location
    Michigan, USA
    MS-Off Ver
    2013
    Posts
    2,208
    Yes, that is easy. This should work for you:

    =C$2*$B3/12

    And actually, you could do this all in one formula, then have the option to select "Standard" or "Interest Only" in another cell (I will use A1 in the below example):

    =IF($A$1="Interest Only",C$2*$B3/12,PMT($B3/12,360,-C$2))

    Jason

  7. #7
    Registered User
    Join Date
    06-14-2007
    Posts
    4
    You are awesome! Having it all in one spreadsheet will be great

  8. #8
    Registered User
    Join Date
    04-30-2006
    Posts
    55
    Try the same formula, but use IPMT()

    Peter

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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