Yield on government bonds with a similar maturity to the lease term (e.g., Treasury Yield).
Spread derived from the company's credit rating or recent unsecured borrowing.
Adjustment for the fact that leases are secured by the underlying asset (often reduces the rate).
Adjustments for currency differences or specific economic environment factors.
Please enter valid numeric values for all fields.
Estimated Incremental Borrowing Rate
0.00%
Breakdown:
Base Rate: %
+ Spread: %
+ Adjustments: %
function calculateIBR() {
// Get inputs by ID matches EXACTLY
var riskFreeInput = document.getElementById('riskFreeRate');
var creditSpreadInput = document.getElementById('creditSpread');
var assetAdjInput = document.getElementById('assetAdjustment');
var otherAdjInput = document.getElementById('otherAdjustment');
var resultBox = document.getElementById('resultBox');
var errorMsg = document.getElementById('errorMsg');
var ibrResultDisplay = document.getElementById('ibrResult');
// Get values
var rfr = parseFloat(riskFreeInput.value);
var spread = parseFloat(creditSpreadInput.value);
var assetAdj = parseFloat(assetAdjInput.value);
var otherAdj = parseFloat(otherAdjInput.value);
// Handle empty inputs as 0 if user leaves them blank, but validate critical ones
if (isNaN(rfr) || isNaN(spread)) {
errorMsg.style.display = 'block';
resultBox.style.display = 'none';
return;
}
// Treat empty adjustments as 0
if (isNaN(assetAdj)) assetAdj = 0;
if (isNaN(otherAdj)) otherAdj = 0;
errorMsg.style.display = 'none';
// Calculation Logic: The Build-Up Approach
// IBR = Reference Rate + Credit Spread + Specific Adjustments
var totalAdjustment = assetAdj + otherAdj;
var finalIBR = rfr + spread + totalAdjustment;
// Display Results
resultBox.style.display = 'block';
ibrResultDisplay.innerHTML = finalIBR.toFixed(2) + "%";
// Update breakdown text
document.getElementById('resBase').innerText = rfr.toFixed(2);
document.getElementById('resSpread').innerText = spread.toFixed(2);
document.getElementById('resAdj').innerText = totalAdjustment.toFixed(2);
}
How to Calculate Incremental Borrowing Rate (IBR) for Leases
Under accounting standards IFRS 16 and ASC 842, determining the correct discount rate is critical for calculating the present value of lease liabilities and right-of-use (ROU) assets. When the implicit rate in the lease cannot be readily determined, the lessee must use their Incremental Borrowing Rate (IBR).
The IBR is defined as the rate of interest that a lessee would have to pay to borrow over a similar term, and with a similar security, the funds necessary to obtain an asset of a similar value to the right-of-use asset in a similar economic environment.
The Build-Up Approach Methodology
This calculator uses the "Build-Up Approach," which is the most common method for estimating IBR without complex regression models. It constructs the rate by summing distinct components:
Reference Rate (Risk-Free Rate): This is the starting point. It typically refers to the yield on government bonds (like US Treasuries or UK Gilts) with a maturity date matching the lease term. For example, a 5-year lease should use the 5-year treasury yield.
Lessee Credit Spread: This reflects the creditworthiness of the company leasing the asset. Companies with lower credit ratings will have higher spreads. This is often derived from the company's existing unsecured borrowing rates or credit default swaps (CDS).
Collateral Adjustment: Since the IBR definition assumes "similar security," an adjustment is needed. Standard loans might be unsecured, but a lease is essentially secured by the asset itself. This adjustment often lowers the rate (negative percentage) because secured borrowing is safer for the lender.
Economic Environment Adjustments: If the lease is in a different currency or a specific jurisdiction with different risk profiles, additional premiums or discounts may apply.
Example Calculation
Imagine a company entering a 10-year lease for a warehouse. Here is how they might determine the IBR:
10-Year Government Bond Yield: 3.50%
Company Credit Spread (BBB Rating): 2.00%
Collateral Adjustment (Secured vs Unsecured): -0.30%
Total IBR: 3.50% + 2.00% – 0.30% = 5.20%
Why is Accuracy Important?
The IBR directly impacts the balance sheet. A lower IBR results in a higher lease liability and ROU asset value, while a higher IBR reduces these figures. Inaccurate rates can lead to material misstatements in financial reporting and compliance issues with auditors.