How to Calculate Predetermined Overhead Rate per Machine Hour

Predetermined Overhead Rate Per Machine Hour Calculator .calculator-container { max-width: 600px; margin: 20px auto; padding: 30px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } .calculator-title { text-align: center; color: #333; margin-bottom: 25px; font-size: 24px; } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; } .input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group input:focus { border-color: #0073aa; outline: none; } .calc-btn { width: 100%; padding: 15px; background-color: #0073aa; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #005177; } .result-box { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #0073aa; display: none; } .result-label { font-size: 14px; color: #666; text-transform: uppercase; letter-spacing: 1px; } .result-value { font-size: 32px; color: #333; font-weight: bold; margin-top: 5px; } .result-explanation { margin-top: 10px; font-size: 14px; color: #666; font-style: italic; } .error-msg { color: #d32f2f; margin-top: 10px; display: none; text-align: center; } .article-content { max-width: 800px; margin: 40px auto; font-family: inherit; line-height: 1.6; color: #333; } .article-content h2 { color: #0073aa; margin-top: 30px; } .article-content ul { margin-bottom: 20px; } .article-content li { margin-bottom: 10px; }

Predetermined Overhead Rate Calculator
(Per Machine Hour)

Predetermined Overhead Rate
$0.00 / MH
function calculateOverheadRate() { // Get input values using var var overheadInput = document.getElementById('estTotalOverhead'); var hoursInput = document.getElementById('estTotalMachineHours'); var resultContainer = document.getElementById('result-container'); var rateResult = document.getElementById('rate-result'); var breakdownResult = document.getElementById('result-breakdown'); var errorMsg = document.getElementById('error-message'); // Parse values var totalOverhead = parseFloat(overheadInput.value); var totalHours = parseFloat(hoursInput.value); // Reset display errorMsg.style.display = 'none'; resultContainer.style.display = 'none'; // Validation Logic if (isNaN(totalOverhead) || totalOverhead < 0) { errorMsg.innerHTML = "Please enter a valid amount for Total Overhead Costs."; errorMsg.style.display = 'block'; return; } if (isNaN(totalHours) || totalHours <= 0) { errorMsg.innerHTML = "Please enter a valid number of Machine Hours (must be greater than 0)."; errorMsg.style.display = 'block'; return; } // Calculation: Rate = Total Overhead / Total Machine Hours var rate = totalOverhead / totalHours; // Formatting Output var formattedRate = rate.toFixed(2); // Display Results rateResult.innerHTML = "$" + formattedRate + " per machine hour"; breakdownResult.innerHTML = "For every hour a machine runs, $" + formattedRate + " of overhead cost is allocated to production."; resultContainer.style.display = 'block'; }

How to Calculate Predetermined Overhead Rate per Machine Hour

In manufacturing environments, specifically those that are heavily automated, allocating indirect costs (overhead) to specific products can be challenging. Unlike direct materials or direct labor, overhead cannot be traced directly to a single unit. To solve this, accountants use a Predetermined Overhead Rate (POHR).

When the production process relies more on machinery than human labor, the most accurate allocation base is usually Machine Hours. This calculator helps you determine that specific rate.

The Formula

The calculation for the predetermined overhead rate per machine hour is performed at the beginning of the accounting period using estimated figures:

Predetermined Overhead Rate = Estimated Total Manufacturing Overhead Costs / Estimated Total Machine Hours

Step-by-Step Calculation Guide

  1. Estimate Overhead Costs: Sum up all budgeted indirect manufacturing costs for the coming period. This includes factory rent, electricity, depreciation on machinery, indirect materials (lubricants, glue), and indirect labor (supervisor salaries).
  2. Estimate Machine Hours: Determine the total number of hours your machinery is expected to run during the same period. This is your "allocation base."
  3. Divide: Divide the total costs by the total hours to get your rate.

Why Use Machine Hours?

Traditionally, overhead was applied based on Direct Labor Hours. However, in modern "Industry 4.0" factories, robots and automated CNC machines do most of the work. In these scenarios:

  • Direct labor costs are low.
  • Depreciation and maintenance (overhead) are high.
  • Machine run-time correlates more strongly with overhead consumption than labor time does.

Calculation Example

Let's say a manufacturer of precision auto parts estimates the following for the upcoming year:

  • Total Estimated Overhead: $1,200,000 (includes factory utilities, machine depreciation, supervisor salaries).
  • Total Estimated Machine Hours: 40,000 hours.

Using the calculator above:

$1,200,000 / 40,000 hours = $30.00 per machine hour.

This means for a specific job that requires the machine to run for 10 hours, the accountant will apply $300 ($30 × 10) of overhead cost to that job.

Leave a Comment