Commercial Building Permit Fee Calculator
ANA›Life Services Authority›National Calculator Authority›Commercial Building Permit Fee Calculator
.calc-container { max-width: 640px; margin: 2rem 0; padding: 1.5rem; background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); font-family: system-ui, -apple-system, sans-serif; } .calc-container h3 { font-family: Georgia, serif; font-size: 1.15rem; color: #1a1a1a; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; } .calc-row label { min-width: 160px; font-size: 0.9rem; color: #333; font-weight: 500; } .calc-row input[type="number"], .calc-row select { flex: 1; min-width: 120px; max-width: 200px; padding: 0.5rem 0.6rem; border: 1px solid #ccc; border-radius: 4px; font-size: 0.9rem; font-family: system-ui, sans-serif; color: #1a1a1a; background: #fafaf8; } .calc-row input:focus, .calc-row select:focus { outline: none; border-color: var(--ac, #3d5a80); box-shadow: 0 0 0 2px rgba(26,74,138,0.12); } .calc-row .unit { font-size: 0.82rem; color: #888; min-width: 30px; } .calc-btn { display: inline-block; margin-top: 0.5rem; padding: 0.55rem 1.5rem; background: var(--ac, #3d5a80); color: #fff; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: system-ui, sans-serif; } .calc-btn:hover { opacity: 0.9; } .calc-result { margin-top: 1.25rem; padding: 1rem 1.25rem; background: #f0f6fc; border-left: 3px solid var(--ac, #3d5a80); border-radius: 0 6px 6px 0; display: none; } .calc-result.visible { display: block; } .calc-result-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #666; margin-bottom: 0.25rem; } .calc-result-value { font-size: 1.6rem; font-weight: 700; color: var(--ac, #3d5a80); } .calc-result-detail { font-size: 0.85rem; color: #555; margin-top: 0.5rem; line-height: 1.5; } .calc-note { margin-top: 1rem; font-size: 0.8rem; color: #888; font-style: italic; } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; } .calc-grid-item { padding: 0.6rem 0.8rem; background: #f8f9fa; border-radius: 4px; border: 1px solid #eee; } .calc-grid-item .label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; } .calc-grid-item .value { font-size: 1.1rem; font-weight: 600; color: #1a1a1a; } @media (max-width: 720px) { .calc-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; } .calc-row label { min-width: auto; } .calc-row input[type="number"], .calc-row select { max-width: 100%; width: 100%; } .calc-grid { grid-template-columns: 1fr; } } .calc-chart { margin: 1rem 0; text-align: center; } .calc-chart svg { max-width: 100%; height: auto; } .calc-chart-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.2rem; margin-top: 0.6rem; font-size: 0.8rem; color: #555; } .calc-chart-legend span { display: inline-flex; align-items: center; gap: 0.3rem; } .calc-chart-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; font-style: normal; } .calc-related { max-width: 640px; margin: 2rem 0 1rem; padding: 1.25rem 1.5rem; background: #f8f9fa; border: 1px solid #e8e8e8; border-radius: 8px; } .calc-related h3 { font-family: Georgia, serif; font-size: 1rem; color: #1a1a1a; margin: 0 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--ac, #3d5a80); } .calc-related-list { list-style: none; padding: 0; margin: 0 0 0.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; } .calc-related-list li a { font-size: 0.88rem; color: var(--ac, #3d5a80); text-decoration: none; } .calc-related-list li a:hover { text-decoration: underline; } .calc-browse-all { margin: 0.5rem 0 0; font-size: 0.9rem; font-weight: 600; } .calc-browse-all a { color: var(--ac, #3d5a80); text-decoration: none; } .calc-browse-all a:hover { text-decoration: underline; } @media (max-width: 720px) { .calc-related-list { grid-template-columns: 1fr; } }
Commercial Building Permit Fee Calculator
Estimate commercial building permit fees based on project construction valuation, occupancy/use type, and jurisdiction size. Fees follow ICC/IBC-based sliding scale schedules commonly adopted across U.S. municipalities.
Total Construction Valuation ($)
Enter the total estimated cost of construction (labor + materials).
Occupancy / Use Type
B – Business (offices, banks, professional) A – Assembly (restaurants, theaters, churches) E – Educational (schools, daycare) F – Factory / Industrial H – High Hazard (chemical, explosive storage) I – Institutional (hospitals, jails, care facilities) M – Mercantile (retail stores, markets) R – Residential (hotels, apartments 4+ units) S – Storage (warehouses, parking garages) U – Utility / Miscellaneous
Jurisdiction Tier
Small (population < 50,000) Medium (population 50,000–250,000) Large (population > 250,000)
Gross Floor Area (sq ft)
Used to calculate plan review and inspection surcharges.
Number of Stories
Fire Sprinkler System Required?
No Yes
Calculate Permit Fee
function comCalc() { // --- Read inputs --- var valuation = parseFloat(document.getElementById('com-valuation').value); var occupancy = document.getElementById('com-occupancy').value; var jurisdiction = document.getElementById('com-jurisdiction').value; var sqft = parseFloat(document.getElementById('com-sqft').value); var stories = parseInt(document.getElementById('com-stories').value) || 1; var sprinkler = document.getElementById('com-sprinkler').value; var resultDiv = document.getElementById('com-result');
// --- Validation --- var errors = []; if (isNaN(valuation) || valuation 100) errors.push("Number of stories must be between 1 and 100.");
if (errors.length > 0) { resultDiv.style.display = 'block'; resultDiv.innerHTML = 'Please fix the following:' + errors.map(function(e){ return ''; }).join('') + ''; return; }
// --------------------------------------------------------------- // 1. BASE PERMIT FEE (ICC sliding-scale schedule) // Tiers (valuation bands) with base fee + rate per $1,000 over threshold // Source: ICC Building Valuation Data fee schedule (widely adopted) // --------------------------------------------------------------- var tiers = [ { max: 1000, base: 23.50, rate: 0.00, over: 0 }, { max: 2000, base: 23.50, rate: 23.50, over: 1000 }, { max: 25000, base: 47.00, rate: 9.65, over: 2000 }, { max: 50000, base: 269.00, rate: 6.95, over: 25000 }, { max: 100000, base: 442.75, rate: 5.60, over: 50000 }, { max: 500000, base: 722.75, rate: 4.65, over: 100000 }, { max: 1000000, base: 2582.75, rate: 3.85, over: 500000 }, { max: Infinity, base: 4507.75, rate: 3.15, over: 1000000 } ];
var baseFee = 0; for (var i = 0; i 2) ? (stories - 2) * 150 : 0; var inspectionFee = (inspSqft + inspStory) * jurMult;
// --------------------------------------------------------------- // 6. FIRE / SPRINKLER PERMIT FEE (if applicable) // Flat $350 base + $0.12/sf for sprinklered buildings // --------------------------------------------------------------- var fireFee = 0; if (sprinkler === 'yes') { fireFee = (350 + sqft * 0.12) * jurMult; }
// --------------------------------------------------------------- // 7. STATE SURCHARGE = 1% of base permit fee (common state levy) // --------------------------------------------------------------- var stateSurcharge = adjustedBase * 0.01;
// --------------------------------------------------------------- // 8. TECHNOLOGY / RECORDS FEE = flat $75 + $0.01/sf (capped $500) // --------------------------------------------------------------- var techFee = Math.min(75 + sqft * 0.01, 500);
// --------------------------------------------------------------- // TOTALS // --------------------------------------------------------------- var totalFee = adjustedBase + planReviewFee + inspectionFee + fireFee + stateSurcharge + techFee; var feePerSqft = totalFee / sqft; var feePercentValuation = (totalFee / valuation) * 100;
// --------------------------------------------------------------- // OUTPUT // --------------------------------------------------------------- var occupancyNames = { 'B':'Business','A':'Assembly','E':'Educational','F':'Factory/Industrial', 'H':'High Hazard','I':'Institutional','M':'Mercantile','R':'Residential', 'S':'Storage','U':'Utility/Misc' }; var jurNames = { 'small':'Small (250k pop)' };
function fmt(n) { return '$' + n.toFixed(2).replace(/\B(?=(\d{3})+(?!\d))/g, ','); }
resultDiv.style.display = 'block'; resultDiv.innerHTML = '### Estimated Commercial Building Permit Fee ' + '' + 'Project Inputs' + 'Construction Valuation' + fmt(valuation) + '' + 'Occupancy Type' + occupancyNames[occupancy] + ' (' + occupancy + ')' + 'Jurisdiction Tier' + jurNames[jurisdiction] + '' + 'Gross Floor Area' + sqft.toLocaleString() + ' sq ft' + 'Stories' + stories + '' + 'Fire Sprinkler System' + (sprinkler==='yes'?'Yes':'No') + '' +
'Fee Breakdown' + 'Base Permit Fee (ICC sliding scale)' + fmt(baseFee) + '' + 'Occupancy Multiplier (' + occMult.toFixed(2) + 'x) + Jurisdiction Multiplier (' + jurMult.toFixed(2) + 'x)' + fmt(adjustedBase) + '' + 'Plan Review Fee (65% of adjusted base)' + fmt(planReviewFee) + '' + 'Inspection Surcharge (area + stories)' + fmt(inspectionFee) + '' + (sprinkler==='yes' ? 'Fire/Sprinkler Permit Fee' + fmt(fireFee) + '' : '') + 'State Surcharge (1% of adjusted base)' + fmt(stateSurcharge) + '' + 'Technology / Records Fee' + fmt(techFee) + '' +
'TOTAL ESTIMATED PERMIT FEE' + fmt(totalFee) + '' + 'Fee per Square Foot' + fmt(feePerSqft) + '/sq ft' + 'Fee as % of Valuation' + feePercentValuation.toFixed(3) + '%' + '' + '⚠️ This is an estimate only. Actual fees vary by jurisdiction. Always verify with your local building department before budgeting.
'; }
#### Formula & Fee Schedule
Total Fee = Adjusted Base Fee + Plan Review Fee + Inspection Surcharge + Fire/Sprinkler Fee + State Surcharge + Technology Fee
1. Base Permit Fee — ICC sliding-scale schedule (widely adopted by U.S. municipalities):
2. Adjusted Base Fee = Base Fee × Occupancy Multiplier × Jurisdiction Multiplier
3. Plan Review Fee = Adjusted Base Fee × 0.65 (65% — ICC standard)
4. Inspection Surcharge = ($0.08/sf for first 10,000 sf + $0.05/sf thereafter + $150/story above 2) × Jurisdiction Multiplier
5. Fire/Sprinkler Permit = ($350 + $0.12 × sq ft) × Jurisdiction Multiplier (if applicable)
6. State Surcharge = Adjusted Base Fee × 1%
7. Technology/Records Fee = min($75 + $0.01 × sq ft, $500)
#### Assumptions & References
- Base fee schedule derived from the ICC (International Code Council) Building Valuation Data fee table, adopted by thousands of U.S. jurisdictions.
- Plan review fee of 65% of the building permit fee is the ICC-recommended standard (IBC Section 107).
- Occupancy multipliers reflect relative inspection complexity per IBC Chapter 3 occupancy classifications.
- This calculator does not include: mechanical/electrical/plumbing (MEP) permits, grading permits, impact fees, utility connection fees, or expedited review premiums.
- Always confirm fees with your local Authority Having Jurisdiction (AHJ) before project budgeting.
More Calculators
- Vulnerability Remediation Priority Calculator
- Backup Storage Size Calculator
- Data Recovery Cost Estimator
- Two-Factor Authentication Adoption ROI Calculator
- Cyber Insurance Coverage Estimator
- RAID Recovery Feasibility Calculator
- Data Encryption Strength Calculator
-
Fuel Cost Comparison Calculator — Natural Gas vs Propane vs Electric Heat
- Heat Loss Calculator for Minnesota Insulation Standards
- Minnesota Heating Degree Days Calculator
- Furnace Sizing Calculator for Minnesota Climate Zones
- Propane vs Natural Gas Cost Comparison Calculator
- Energy Savings Calculator
Read Next
Study Time Planner Authority Network America › Life Services Authority › National Calculator Authority .calc-container { max-width: 640px;...