The Predetermined Overhead Rate is Calculated by

Predetermined Overhead Rate Calculator .por-calculator-container { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .por-calc-box { background-color: #f9f9f9; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-bottom: 40px; border: 1px solid #e1e1e1; } .por-calc-title { text-align: center; margin-top: 0; margin-bottom: 25px; color: #2c3e50; font-size: 24px; font-weight: 700; } .por-input-group { margin-bottom: 20px; } .por-input-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; } .por-input-group input, .por-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .por-input-group input:focus, .por-input-group select:focus { border-color: #007bff; outline: none; box-shadow: 0 0 0 3px rgba(0,123,255,0.1); } .por-btn { width: 100%; padding: 15px; background-color: #007bff; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; } .por-btn:hover { background-color: #0056b3; } .por-result-box { margin-top: 25px; padding: 20px; background-color: #e8f4fd; border-left: 5px solid #007bff; display: none; } .por-result-title { font-size: 16px; font-weight: 600; margin: 0 0 10px 0; color: #495057; } .por-result-value { font-size: 32px; font-weight: 700; color: #007bff; } .por-article h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #eee; padding-bottom: 10px; } .por-article h3 { color: #34495e; margin-top: 25px; } .por-article p { margin-bottom: 15px; } .por-article ul { margin-bottom: 15px; padding-left: 20px; } .por-article li { margin-bottom: 8px; } .por-formula-box { background: #f1f1f1; padding: 15px; border-radius: 5px; font-family: monospace; font-size: 16px; text-align: center; margin: 20px 0; border: 1px solid #ddd; }

Predetermined Overhead Rate Calculator

Direct Labor Hours Machine Hours Direct Labor Cost ($) Units Produced
Predetermined Overhead Rate:
$0.00 per Hour

How the Predetermined Overhead Rate is Calculated

The predetermined overhead rate (POHR) is a crucial metric in managerial accounting, specifically within job-order costing systems. It allows manufacturers and service providers to estimate the overhead costs associated with a specific job or product before the actual costs are known at the end of the accounting period.

This calculation helps businesses normalize the fluctuations in overhead costs (like seasonal utility bills) and production volume, ensuring that product pricing and costing remain consistent throughout the year.

The Formula

The predetermined overhead rate is calculated by dividing the estimated total manufacturing overhead costs by the estimated total amount of the allocation base. This calculation is performed before the period begins (typically at the start of the fiscal year).

Predetermined Overhead Rate = Estimated Total Manufacturing Overhead Costs / Estimated Total Allocation Base

Components of the Calculation

  • Estimated Total Manufacturing Overhead Costs: This is the sum of all indirect manufacturing costs expected for the upcoming period. It includes indirect materials, indirect labor, factory rent, utilities, depreciation on factory equipment, and insurance. It does not include direct materials or direct labor.
  • Allocation Base: This is the driver used to assign overhead costs to products. It should be the factor that most heavily influences or "drives" the overhead costs. Common bases include:
    • Direct Labor Hours: Used when labor is the primary driver of production activity.
    • Machine Hours: Used in highly automated environments where machinery drives costs.
    • Direct Labor Cost: Used when overhead rates are correlated with the wages paid to workers.

Example Calculation

Consider a furniture manufacturing company, "FineWoodworks," preparing its budget for the upcoming year.

  • The company estimates total manufacturing overhead costs (rent, glue, supervisor salaries, electricity) will be $600,000.
  • Because the work is labor-intensive, they choose Direct Labor Hours as their allocation base.
  • They estimate they will use 30,000 Direct Labor Hours during the year.

Using the formula:

POHR = $600,000 / 30,000 hours = $20.00 per Direct Labor Hour

This means that for every hour a carpenter works on a table, the company will add $20 to the cost of that table to cover overhead expenses.

Why Not Use Actual Rates?

You might wonder why companies use estimates instead of actual data. The predetermined overhead rate is calculated using estimates because actual overhead costs are not known until the end of the period. If a company waited for actual data, they would not be able to cost jobs or price products accurately as they are completed. Furthermore, actual overhead rates can fluctuate wildly month-to-month due to seasonal heating costs or repair bills, which would cause the unit cost of identical products to vary simply based on the month they were produced.

Calculating Applied Overhead

Once the rate is established, it is used to "apply" overhead to work-in-process inventory. The formula for applied overhead is:

Applied Overhead = Predetermined Overhead Rate × Actual Amount of Allocation Base Used

If a specific custom desk job took 15 direct labor hours to complete, using the example above ($20/hr), the applied overhead for that desk would be $300.

function updateBaseLabel() { var type = document.getElementById('baseUnitType').value; var label = document.getElementById('baseLabel'); if (type === 'DLH') { label.textContent = "Estimated Total Direct Labor Hours"; } else if (type === 'MH') { label.textContent = "Estimated Total Machine Hours"; } else if (type === 'DLC') { label.textContent = "Estimated Total Direct Labor Cost ($)"; } else if (type === 'units') { label.textContent = "Estimated Total Units Produced"; } } function calculatePOHR() { // Get input values var overhead = parseFloat(document.getElementById('estOverheadCost').value); var baseAmount = parseFloat(document.getElementById('estBaseAmount').value); var type = document.getElementById('baseUnitType').value; var resultBox = document.getElementById('resultBox'); var resultText = document.getElementById('porResult'); var explanationText = document.getElementById('porExplanation'); // Validation if (isNaN(overhead) || isNaN(baseAmount)) { alert("Please enter valid numbers for both estimated overhead and the allocation base."); return; } if (baseAmount === 0) { alert("The allocation base cannot be zero."); return; } // Calculation var rate = overhead / baseAmount; var formattedResult = ""; var explanationStr = ""; // Formatting based on type if (type === 'DLC') { // If base is cost ($), rate is typically expressed as a percentage var percentage = rate * 100; formattedResult = percentage.toFixed(2) + "% of Direct Labor Cost"; explanationStr = "For every $1.00 spent on Direct Labor, $" + rate.toFixed(2) + " is applied as manufacturing overhead."; } else { // If base is volume (Hours/Units), rate is Currency per Unit var unitName = ""; if (type === 'DLH') unitName = "Direct Labor Hour"; if (type === 'MH') unitName = "Machine Hour"; if (type === 'units') unitName = "Unit Produced"; formattedResult = "$" + rate.toFixed(2) + " per " + unitName; explanationStr = "For every " + unitName.toLowerCase() + " used/produced, $" + rate.toFixed(2) + " is applied as manufacturing overhead."; } // Display Result resultBox.style.display = "block"; resultText.textContent = formattedResult; explanationText.textContent = explanationStr; }

Leave a Comment