(12C) (11C) Loan Amount Using the Annual Loan Constant - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: General Software Library (/forum-13.html) +--- Thread: (12C) (11C) Loan Amount Using the Annual Loan Constant (/thread-12575.html) |
(12C) (11C) Loan Amount Using the Annual Loan Constant - Eddie W. Shore - 03-07-2019 05:08 AM Introduction The program calculates the theoretical loan amount using the following factors: * NOI: Net Operating Income. The estimated net operating income the property is expected to earn annually. An average is usually used. * DCR: Debt Coverage Ratio. The ratio of net operating income to annual debt service, describing a company's ability to pay its debts. Generally, the larger the DCR, the better. We really don't want DCR to be below 1. * Number of payments per year, number of years, and annual interest rate of the potential loan. The ALC, or the annual loan constant is calculated by: * Either divided the annual debt service by the loan amount (when the amount is known), or * Determining the periodic payment to amortize a $100 loan given number of payments and interest rate. Set up: Number of payments -> N Interest Rate -> I%YR (or periodic interest rate -> i) -100 -> PV 0 -> FV Solve for PMT The ALC is expressed as a percentage. The theoretical loan amount is calculated by: Loan = NOI / (DCR * ALC%) HP 12C Program: Loan Amount Using the Annual Loan Constant Instructions: Store the following: NOI in R1 DCR in R2 Number of payments per year in R3 Number of periods in [ n ] Periodic Interest rate in [ i ] Program: Step; Key; Code Code:
(* HP 12C Platinum, step 17: GTO 000; 43, 33, 000) HP 11C Program: Loan Amount Using the Annual Loan Constant Instructions: Store the following: NOI in R1 DCR in R2 Number of payments per year in R3 Number of periods in R4 Periodic Interest rate in R5 Program: Step; Key; Code Code:
Examples Example 1: NOI: $58,000.00 DCR: 1.25 P/Y: 12 Number of Years: 30 Annual Interest Rate: 5% Loan Amount: $720,288.92 Example 2: NOI: $40,000.00 DCR: 1.35 P/Y: 12 Number of Years: 20 Annual Interest Rate: 6.8% Loan Amount: $323,464.95 Source: Goldman, Mark H. and Stephen D. Messner "HP 12C Real Estate Applications Handbook" Hewlett Packard Rev. B. March 1984 Link: https://edspi31415.blogspot.com/2019/03/hp-12c-and-hp-11c-loan-amount-using.html |