Under ASC 842, when the rate implicit in a lease cannot be readily determined, a lessee must use their Incremental Borrowing Rate (IBR) to calculate the present value of lease payments. This calculator utilizes the "Build-Up Method," a common approach accepted by auditors, starting with a risk-free rate and adjusting for credit risk, collateralization, and specific lease terms.
The yield on a Treasury bond with a maturity matching the lease term.
Spread based on the lessee's credit rating (e.g., BBB spread over Treasury).
Adjustment for the secured nature of the lease (usually reduces the rate).
Adjustments for payment structure, geography, or currency risks.
Please enter valid numeric values for all fields.
Estimated Incremental Borrowing Rate
0.00%
function calculateIBR() {
// Get input values
var riskFreeInput = document.getElementById('riskFreeRate').value;
var creditSpreadInput = document.getElementById('creditSpread').value;
var collateralInput = document.getElementById('collateralAdjustment').value;
var leaseAdjInput = document.getElementById('leaseAdjustment').value;
// Validate inputs
if (riskFreeInput === "" || creditSpreadInput === "" || collateralInput === "" || leaseAdjInput === "") {
document.getElementById('errorMsg').style.display = 'block';
document.getElementById('resultContainer').style.display = 'none';
return;
}
// Parse values
var riskFree = parseFloat(riskFreeInput);
var creditSpread = parseFloat(creditSpreadInput);
var collateral = parseFloat(collateralInput);
var leaseAdj = parseFloat(leaseAdjInput);
// Check for NaN
if (isNaN(riskFree) || isNaN(creditSpread) || isNaN(collateral) || isNaN(leaseAdj)) {
document.getElementById('errorMsg').style.display = 'block';
document.getElementById('resultContainer').style.display = 'none';
return;
}
// Calculate IBR: Sum of components
// IBR = Risk Free + Credit Spread + Collateral Adj + Lease Adj
var ibr = riskFree + creditSpread + collateral + leaseAdj;
// Ensure rate doesn't drop below 0 (though theoretically possible in negative rate environments, practically rare for IBR)
if (ibr < 0) {
ibr = 0;
}
// Hide error, Show result
document.getElementById('errorMsg').style.display = 'none';
document.getElementById('resultContainer').style.display = 'block';
document.getElementById('ibrResult').innerHTML = ibr.toFixed(2) + "%";
}
Understanding the Incremental Borrowing Rate under ASC 842
The Financial Accounting Standards Board (FASB) Accounting Standards Codification (ASC) Topic 842 requires lessees to recognize lease liabilities on the balance sheet. This liability is calculated as the present value of future lease payments. The discount rate used for this calculation is critical.
Ideally, the lessee should use the Rate Implicit in the Lease. However, this rate is often unknown because the lessee does not know the lessor's underlying asset fair value or direct costs. In such cases, the standard mandates the use of the Incremental Borrowing Rate (IBR).
Definition of IBR
ASC 842 defines the IBR as: "The rate of interest that a lessee would have to pay to borrow on a collateralized basis over a similar term an amount equal to the lease payments in a similar economic environment."
The Build-Up Approach Calculation
Since the IBR is a theoretical rate, it is often derived using a "bottom-up" or "build-up" methodology. This calculator mimics that process by aggregating the four primary components of a secured borrowing rate.
This is the baseline interest rate for an investment with zero risk, typically derived from government bond yields (e.g., US Treasury curves) that match the term of the lease. If you have a 10-year lease, you start with the 10-year Treasury yield.
2. Credit Spread
This component accounts for the lessee's creditworthiness. It represents the premium lenders demand for taking on the default risk of the company.
Public Companies: Can often use yields from their outstanding corporate bonds.
Private Companies: Must estimate a "synthetic" credit rating and apply the spread associated with that rating (e.g., BBB, BB).
3. Collateralization Adjustment
ASC 842 specifically requires the IBR to be a collateralized rate. Most corporate revolving credit facilities are unsecured. Since secured loans generally have lower interest rates than unsecured loans (because the lender has recourse to the asset), a downward adjustment is often applied to the unsecured credit spread. This value is typically negative in the calculation.
4. Lease Specific Adjustments
The final layer involves adjustments for the specific nature of the lease environment:
Currency: If the lease is denominated in a foreign currency, country risk premiums may apply.
Asset Specifics: The liquidity of the collateral (the leased asset) may impact the rate.
Payment Timing: Adjustments may be needed depending on whether payments are made in advance or arrears.
Why Accurate Calculation Matters
The IBR has a direct impact on the Balance Sheet and Income Statement:
Higher IBR: Results in a lower Lease Liability and Right-of-Use (ROU) Asset, but higher Interest Expense in the early years of the lease.
Lower IBR: Results in a higher Lease Liability and ROU Asset, with lower Interest Expense initially.
Because these rates are estimates, they are a high-risk area for audit scrutiny. Companies must document their methodology, such as the inputs used in the calculator above, to satisfy auditor requirements.