Assignment -25 | Loan Amortization and Financial Analysis

Excepted timing : 10 minutes

Sample Data

| Loan Amount | Interest Rate | Loan Term | Start Date  |

|-------------|---------------|-----------|-------------|

| 10000       | 5%            | 3 years   | 2023-01-01  |

 


Task :
  1. Calculate the monthly payment using PMT function based on Loan Amount, Interest Rate, and Loan Term.
  2. Create an amortization schedule to show monthly payments, principal paid, interest paid, and remaining balance.
  3. Use DATE function to calculate the end date of the loan.
  4. Insert a line chart to visualize the trend of remaining balance over the loan term.
  5. Use Goal Seek feature to determine the maximum loan amount based on a specified monthly payment.

To perform the tasks outlined in Assignment  using Excel, follow these step-by-step instructions:

Steps to Perform:

  1. Calculate Monthly Payment Using PMT Function:
    • Use the PMT function in Excel to calculate the monthly payment for the loan.
    • Example: =PMT(interest_rate/12, loan_term_in_years*12, -loan_amount) assuming loan amount is in cell B2, interest rate is in cell B3 (5% per annum), and loan term is in cell B4 (3 years).
  2. Create an Amortization Schedule:
    • Set up columns for Month, Payment, Principal Paid, Interest Paid, and Remaining Balance.
    • Calculate each month's values based on the PMT result and adjust the remaining balance accordingly using Excel formulas.
  3. Use DATE Function to Calculate Loan End Date:
    • Use the DATE function to calculate the end date of the loan based on the start date and loan term.
    • Example: =DATE(YEAR(start_date) + loan_term_years, MONTH(start_date), DAY(start_date)) assuming start date is in cell B5 and loan term is in cell B4.
  4. Insert a Line Chart to Visualize Remaining Balance Trend:
    • Select the data range of the remaining balance over time.
    • Go to Insert > Line Chart > Line (or Smooth Line) to create a chart showing the trend of remaining balance over the loan term.
    • Customize the chart with appropriate titles, axis labels, and legend.
  5. Use Goal Seek Feature to Determine Maximum Loan Amount:
    • Set up a scenario where you want to determine the maximum loan amount based on a specified monthly payment.
    • Use the Goal Seek feature (under Data > What-If Analysis > Goal Seek) to find the maximum loan amount that allows you to achieve the desired monthly payment.
    • Specify the target cell (monthly payment cell), the desired value (monthly payment amount), and the changing cell (loan amount cell).

Detailed Steps: