Calculate the SBA Guaranty Fee based on loan amount and program type.
Working Capital
Real Estate
Equipment
Inventory
Debt Refinance
Other
Calculated SBA Guaranty Fee:
—USD
Understanding SBA Guaranty Fees and How They Are Calculated
The U.S. Small Business Administration (SBA) offers loan programs that are partially guaranteed by the SBA. This guarantee reduces the risk for lenders, making it easier for small businesses to access capital. A key component of these programs is the SBA Guaranty Fee, a one-time charge paid by the borrower (or sometimes the lender) at the time the loan is disbursed. This fee helps the SBA cover the cost of its guarantee.
The calculation of the SBA Guaranty Fee is not a single, fixed percentage. It depends on several factors, primarily the loan amount and the SBA loan program. The SBA has different fee structures for different programs, and the fee often decreases as a percentage of the loan amount for larger loans. For loans over a certain threshold, the fee structure typically changes.
How the SBA Guaranty Fee is Calculated
The SBA Guaranty Fee is generally calculated using a tiered structure. For the most common programs like the 7(a) loan program, the fees have historically been structured as follows (note: these rates are subject to change and can vary slightly, always consult the latest SBA guidelines):
For amounts up to $125,000: A fixed percentage (e.g., 2% historically).
For amounts between $125,001 and $500,000: A tiered percentage. For instance, a base percentage for the first $125,000, and a different, often lower, percentage for the amount above $125,000 up to $500,000.
For amounts above $500,000: Further tiered percentages apply, often with a lower rate for the portion of the loan exceeding $500,000, and potentially different rates for portions above $1,000,000 or $5,000,000.
Loan Term Impact: While the primary factors are loan amount and program, the loan term can sometimes influence fee calculations for specific sub-programs or special initiatives. However, for the standard 7(a) program, the fee is typically a one-time charge based on the initial loan amount.
Loan Purpose and Program Type: Different SBA loan programs (like 7(a), 504, or Microloans) have distinct fee structures. This calculator focuses on a generalized tiered approach common for the 7(a) program, with slight adjustments that may be influenced by the loan's purpose or term as per current SBA regulations. For simplicity and common scenarios, this calculator uses a common fee structure that often distinguishes between loan amounts and can be influenced by the term (longer terms might sometimes have different fee implications, though the primary structure is based on amount).
Simplified Calculation Logic Used in This Calculator (Illustrative)
This calculator applies a simplified, representative tiered fee structure based on loan amount. The exact percentages and thresholds can change, so this serves as an estimate.
Example Fee Structure (Illustrative and subject to change):
Up to $150,000: 3.00%
$150,001 to $500,000: 3.00% on the first $150,000 + 3.50% on the amount over $150,000.
$500,001 to $750,000: 3.00% on the first $150,000 + 3.50% on the amount from $150,001 to $500,000 + 2.50% on the amount over $500,000.
Above $750,000: 3.00% on first $150k + 3.50% on $150k-$500k + 2.50% on $500k-$750k + 2.50% on amount over $750,000.
This calculator adapts these tiers.
Disclaimer: This calculator provides an estimated SBA Guaranty Fee based on commonly used rates and structures. Actual fees can vary based on the specific SBA loan program, lender, current SBA regulations, and the exact loan terms. Always consult your lender or the SBA for definitive fee calculations.
Use Cases for the SBA Guaranty Fee Calculator
This calculator is useful for:
Small Business Owners: Estimating the upfront cost of an SBA-guaranteed loan.
Lenders: Quickly calculating the fee for different loan scenarios to present to clients.
Financial Advisors: Helping clients understand the total cost of financing through SBA programs.
Budgeting: Incorporating the guaranty fee into business plans and financial projections.
function calculateSbaGuarantyFee() {
var loanAmount = parseFloat(document.getElementById("loanAmount").value);
var loanTermYears = parseFloat(document.getElementById("loanTermYears").value);
var loanPurpose = document.getElementById("loanPurpose").value; // Not directly used in fee calc but good for context
var calculatedFee = 0;
// Clear previous result
document.getElementById("result").textContent = "–";
document.getElementById("result-unit").textContent = "USD";
// Input validation
if (isNaN(loanAmount) || loanAmount <= 0) {
alert("Please enter a valid positive loan amount.");
return;
}
if (isNaN(loanTermYears) || loanTermYears <= 0) {
alert("Please enter a valid positive loan term in years.");
return;
}
// — SBA 7(a) Guaranty Fee Calculation Logic (Illustrative based on common tiers) —
// NOTE: SBA fee structures change. This is a representative model.
// As of recent updates, fees are often structured like this:
// On the first $150,000: 3.00%
// On the amount from $150,001 to $500,000: 3.50%
// On the amount from $500,001 to $750,000: 2.50%
// On amounts over $750,000: 2.50%
var feeTier1_threshold = 150000;
var feeTier1_rate = 0.0300; // 3.00%
var feeTier2_threshold = 500000;
var feeTier2_rate = 0.0350; // 3.50%
var feeTier3_threshold = 750000;
var feeTier3_rate = 0.0250; // 2.50%
var feeTier4_rate = 0.0250; // 2.50% for amounts above $750,000
// Calculate fee based on tiers
if (loanAmount <= feeTier1_threshold) {
calculatedFee = loanAmount * feeTier1_rate;
} else if (loanAmount <= feeTier2_threshold) {
var tier1_amount = feeTier1_threshold;
var tier1_fee = tier1_amount * feeTier1_rate;
var tier2_amount = loanAmount – feeTier1_threshold;
var tier2_fee = tier2_amount * feeTier2_rate;
calculatedFee = tier1_fee + tier2_fee;
} else if (loanAmount feeTier3_threshold
var tier1_amount = feeTier1_threshold;
var tier1_fee = tier1_amount * feeTier1_rate;
var tier2_amount_full = feeTier2_threshold – feeTier1_threshold;
var tier2_fee_full = tier2_amount_full * feeTier2_rate;
var tier3_amount_full = feeTier3_threshold – feeTier2_threshold;
var tier3_fee_full = tier3_amount_full * feeTier3_rate;
var tier4_amount = loanAmount – feeTier3_threshold;
var tier4_fee = tier4_amount * feeTier4_rate;
calculatedFee = tier1_fee + tier2_fee_full + tier3_fee_full + tier4_fee;
}
// Round to 2 decimal places for currency
calculatedFee = parseFloat(calculatedFee.toFixed(2));
// Display the result
document.getElementById("result").textContent = calculatedFee.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 });
document.getElementById("result-unit").textContent = "USD";
}