The Predetermined Overhead Rate is Calculated by Taking

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: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .por-calc-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 600; } .por-input-group { margin-bottom: 20px; } .por-label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .por-input, .por-select { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; transition: border-color 0.15s ease-in-out; } .por-input:focus, .por-select:focus { border-color: #007bff; outline: none; } .por-btn { display: block; width: 100%; background-color: #007bff; color: white; border: none; padding: 15px; font-size: 18px; font-weight: 600; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; } .por-btn:hover { background-color: #0056b3; } .por-result { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #007bff; display: none; } .por-result-title { font-size: 14px; text-transform: uppercase; color: #6c757d; letter-spacing: 1px; margin-bottom: 5px; } .por-result-value { font-size: 32px; font-weight: 700; color: #2c3e50; } .por-result-desc { font-size: 14px; color: #6c757d; margin-top: 5px; } .por-content h2 { color: #2c3e50; border-bottom: 2px solid #e9ecef; padding-bottom: 10px; margin-top: 40px; } .por-content h3 { color: #495057; margin-top: 25px; } .por-content p { margin-bottom: 15px; } .por-content ul { margin-bottom: 20px; } .por-content li { margin-bottom: 8px; } .formula-box { background: #eef2f5; padding: 15px; border-radius: 4px; font-family: monospace; text-align: center; margin: 20px 0; font-size: 1.1em; }

Predetermined Overhead Rate Calculator

Direct Labor Hours Machine Hours Direct Labor Cost ($)
Predetermined Overhead Rate
$0.00
per Direct Labor Hour
function updateBaseLabel() { var type = document.getElementById("allocationBaseType").value; var label = document.getElementById("baseAmountLabel"); if (type === "hours") { label.innerText = "Estimated Total Direct Labor Hours"; } else if (type === "machine") { label.innerText = "Estimated Total Machine Hours"; } else if (type === "cost") { label.innerText = "Estimated Total Direct Labor Cost ($)"; } } function calculatePOR() { var overhead = parseFloat(document.getElementById("estOverheadCost").value); var base = parseFloat(document.getElementById("estBaseAmount").value); var type = document.getElementById("allocationBaseType").value; var resultBox = document.getElementById("porResult"); var resultValue = document.getElementById("rateValue"); var resultDesc = document.getElementById("rateDescription"); if (isNaN(overhead) || isNaN(base)) { alert("Please enter valid numbers for both Overhead Costs and Allocation Base."); return; } if (base === 0) { alert("The Allocation Base amount cannot be zero."); return; } var rate = overhead / base; resultBox.style.display = "block"; if (type === "cost") { // When base is a cost (dollars), the rate is typically expressed as a percentage var percentage = rate * 100; resultValue.innerText = percentage.toFixed(2) + "%"; resultDesc.innerText = "of Direct Labor Cost"; } else { // When base is hours, the rate is dollars per hour resultValue.innerText = "$" + rate.toFixed(2); if (type === "hours") { resultDesc.innerText = "per Direct Labor Hour"; } else { resultDesc.innerText = "per Machine Hour"; } } }

How the Predetermined Overhead Rate is Calculated

In Managerial Accounting, the predetermined overhead rate is calculated by taking the estimated total manufacturing overhead costs and dividing them by the estimated total amount of the allocation base. This calculation is performed before the beginning of an accounting period (typically a year) to facilitate job costing and pricing decisions.

Predetermined Overhead Rate = Estimated Overhead Costs / Estimated Allocation Base

Understanding the Components

To use this formula correctly, you need two specific estimates derived from the company's annual budget:

  • Numerator (Top): Estimated Total Manufacturing Overhead Costs. This includes all indirect costs associated with production, such as factory rent, utilities, depreciation on factory equipment, and indirect labor/materials. It does not include selling or administrative expenses.
  • Denominator (Bottom): Estimated Total Allocation Base. This is the driver that causes overhead costs to be incurred. Common bases include Direct Labor Hours, Machine Hours, or Direct Labor Costs. Ideally, there should be a strong correlation between the base and the overhead costs.

Why Calculate "Predetermined" Rates?

Companies calculate this rate in advance because actual overhead costs are usually not known until the end of the month or year. However, managers need to know the cost of a product immediately upon completion to determine pricing and profitability. By using a predetermined rate, companies can apply overhead to jobs using "Normal Costing" as they are completed.

Calculation Example

Imagine a furniture manufacturing company with the following budgeted data for the upcoming year:

  • Estimated Total Manufacturing Overhead: $600,000
  • Estimated Allocation Base (Direct Labor Hours): 20,000 hours

The predetermined overhead rate is calculated by taking:

$600,000 / 20,000 Hours = $30.00 per Direct Labor Hour

This means for every hour a direct laborer works on a piece of furniture, the company will add $30 to the cost of that product to cover indirect factory expenses.

Application of the Rate

Once the rate is established, it is used throughout the period to apply overhead. If a specific custom table takes 10 hours of direct labor to build, the applied overhead would be:

10 Hours × $30/Hour = $300 Applied Overhead

At the end of the period, accountants will compare the Applied Overhead to the Actual Overhead to determine if overhead was over-applied or under-applied, requiring an adjustment to the Cost of Goods Sold.

Leave a Comment