How to Calculate Overhead Rate per Hour

Overhead Rate Per Hour Calculator .overhead-calc-container { max-width: 800px; margin: 0 auto; padding: 20px; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } .overhead-calc-container h2 { text-align: center; color: #2c3e50; margin-bottom: 25px; } .calc-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 15px; } .calc-col { flex: 1; min-width: 250px; } .calc-label { display: block; margin-bottom: 5px; font-weight: 600; color: #444; } .calc-input-group { position: relative; display: flex; align-items: center; } .calc-input-group span { position: absolute; left: 10px; color: #666; } .calc-input { width: 100%; padding: 10px 10px 10px 25px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .calc-input.no-prefix { padding-left: 10px; } .calc-btn { display: block; width: 100%; padding: 12px; background: #2980b9; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; margin-top: 15px; font-weight: bold; transition: background 0.3s; } .calc-btn:hover { background: #1f6391; } .results-box { margin-top: 25px; padding: 20px; background: #fff; border: 1px solid #ddd; border-radius: 6px; display: none; } .result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; } .result-label { color: #555; font-size: 16px; } .result-value { font-size: 18px; font-weight: bold; color: #2c3e50; } .big-result { font-size: 24px; color: #27ae60; } .article-content { max-width: 800px; margin: 40px auto; font-family: inherit; line-height: 1.6; color: #333; } .article-content h2 { color: #2c3e50; margin-top: 30px; } .article-content h3 { color: #34495e; } .article-content ul { margin-bottom: 20px; } .article-content li { margin-bottom: 10px; } @media (max-width: 600px) { .calc-row { flex-direction: column; gap: 0; } .calc-col { margin-bottom: 15px; } }

Overhead Rate Per Hour Calculator

Enter your indirect costs and billable hours for a specific period (e.g., Monthly or Annually) to calculate your burden rate.

$
$
$
$
$
Sum of all hours billed to clients during this period.
Total Overhead Expenses: $0.00
Total Billable Hours: 0.00
Overhead Rate Per Hour: $0.00 / hr
function calculateOverheadRate() { var rent = parseFloat(document.getElementById('rentCosts').value) || 0; var admin = parseFloat(document.getElementById('adminSalaries').value) || 0; var software = parseFloat(document.getElementById('softwareCosts').value) || 0; var marketing = parseFloat(document.getElementById('marketingCosts').value) || 0; var other = parseFloat(document.getElementById('otherCosts').value) || 0; var hours = parseFloat(document.getElementById('billableHours').value) || 0; var totalOverhead = rent + admin + software + marketing + other; // Display formatted total costs document.getElementById('totalOverheadDisplay').innerHTML = '$' + totalOverhead.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('totalHoursDisplay').innerHTML = hours.toLocaleString(); var resultsArea = document.getElementById('resultsArea'); var rateDisplay = document.getElementById('rateResult'); resultsArea.style.display = 'block'; if (hours > 0) { var ratePerHour = totalOverhead / hours; rateDisplay.innerHTML = '$' + ratePerHour.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + ' / hr'; } else { rateDisplay.innerHTML = 'N/A (Hours must be > 0)'; } }

How to Calculate Overhead Rate Per Hour

Understanding your overhead rate per hour is critical for ensuring your pricing strategy actually covers your costs. While direct costs like raw materials and billable labor are easy to track, indirect costs—overhead—often eat into profits if not properly allocated.

What is Overhead Rate per Hour?

The overhead rate per hour represents the cost of running your business for every hour of billable work performed. It allocates indirect expenses (rent, insurance, administrative salaries) to the specific units of production or time that generate revenue. If you charge $100 per hour but have an overhead rate of $40 per hour and a direct labor cost of $50 per hour, your true profit is only $10.

The Formula

To calculate the overhead rate per hour, use the following formula:

Overhead Rate = Total Indirect Costs / Total Billable Hours

Where:

  • Total Indirect Costs: All business expenses that cannot be traced directly to a specific project (e.g., rent, utilities, software subscriptions, marketing, accounting fees, and non-billable support staff wages).
  • Total Billable Hours: The total number of hours your team spent working on revenue-generating tasks during the same period.

Step-by-Step Calculation Example

Let's assume a small digital agency wants to calculate their monthly overhead rate.

  1. Identify Indirect Costs (Monthly):
    • Office Rent & Utilities: $2,500
    • Software & Tools: $500
    • Admin/Receptionist Salary: $3,000
    • Insurance & Legal: $1,000
    • Total Overhead: $7,000
  2. Calculate Billable Hours:
    • The agency has 3 designers.
    • Each works 40 hours a week, but only 30 hours are billable (client work).
    • 3 employees × 30 hours × 4 weeks = 360 Billable Hours.
  3. Apply the Formula:
    $7,000 / 360 hours = $19.44 per hour.

This means for every hour the agency bills a client, they must allocate $19.44 just to keep the lights on and the business running. This figure must be added to the direct labor cost and desired profit margin to determine the final billing rate.

Why This Metric Matters

Calculating this rate helps you avoid underpricing. If you only account for the hourly wage of your employees when quoting a project, you are ignoring the infrastructure that supports them. Regularly reviewing your overhead rate per hour can also highlight when administrative costs are becoming bloated relative to your production capacity.

Leave a Comment