Calculate the Predetermined Overhead Rate for the Year

.pohr-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; box-shadow: 0 4px 6px rgba(0,0,0,0.1); } .pohr-input-group { margin-bottom: 20px; } .pohr-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .pohr-input-group input, .pohr-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .pohr-btn { background-color: #0056b3; color: white; padding: 15px 25px; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; width: 100%; font-weight: bold; transition: background-color 0.3s; } .pohr-btn:hover { background-color: #004494; } #pohrResult { margin-top: 25px; padding: 20px; background-color: #e7f3ff; border-left: 5px solid #0056b3; border-radius: 4px; font-size: 20px; text-align: center; color: #003366; } .pohr-article { margin-top: 40px; line-height: 1.6; color: #444; } .pohr-article h2 { color: #222; border-bottom: 2px solid #0056b3; padding-bottom: 10px; } .pohr-article h3 { color: #333; margin-top: 25px; } .pohr-example { background: #fff; padding: 15px; border: 1px dashed #0056b3; margin: 20px 0; }

Predetermined Overhead Rate Calculator

Calculate your company's predetermined overhead rate (POHR) to accurately allocate indirect manufacturing costs to your products or services.

Direct Labor Hours Machine Hours Direct Labor Dollars ($) Units of Production Materials Cost ($)

What is the Predetermined Overhead Rate (POHR)?

The Predetermined Overhead Rate (POHR) is an allocation rate used by businesses to apply estimated manufacturing overhead costs to cost objects, such as products or jobs, before the actual costs are known. This calculation typically occurs at the beginning of an accounting period (usually the fiscal year).

By using a POHR, management can estimate the cost of a job or product immediately upon completion, which is critical for pricing decisions, financial reporting, and performance evaluation.

The POHR Formula

The calculation is straightforward but requires accurate estimations of two primary variables:

POHR = Total Estimated Manufacturing Overhead Costs / Total Estimated Amount of Allocation Base

Key Components of the Calculation

  • Estimated Manufacturing Overhead: Includes indirect costs that cannot be traced directly to a specific unit, such as factory rent, utilities, depreciation on equipment, and indirect labor.
  • Allocation Base: A measure of activity used to assign costs to products. Common bases include direct labor hours, machine hours, or direct labor dollars.

Step-by-Step Calculation Example

Suppose a furniture manufacturing company estimates its total overhead for the upcoming year to be $250,000. They decide to use direct labor hours as their allocation base and estimate that the staff will work 25,000 direct labor hours during the year.

Calculation: $250,000 / 25,000 hours = $10.00 per direct labor hour

This means for every hour a worker spends on a specific project, the company will "apply" $10 of overhead cost to that project.

Why Companies Use POHR

Actual overhead costs are often not known until the end of the month or year. If a company waited for actual bills (like electricity or seasonal maintenance) to arrive before pricing their products, they would be unable to provide quotes to customers. POHR provides a "normal" cost that smooths out fluctuations in monthly overhead spending.

Choosing the Right Allocation Base

The "base" should be the primary driver of overhead costs. In highly automated factories, Machine Hours is often the most accurate base. In labor-intensive artisan shops, Direct Labor Hours or Direct Labor Dollars are preferred. Choosing an inappropriate base can lead to "product cross-subsidization," where some products are overpriced and others are underpriced.

function calculatePOHR() { var overhead = document.getElementById("estOverhead").value; var base = document.getElementById("estBase").value; var unit = document.getElementById("baseUnit").value; var display = document.getElementById("pohrResult"); var overheadNum = parseFloat(overhead); var baseNum = parseFloat(base); if (isNaN(overheadNum) || isNaN(baseNum) || baseNum <= 0) { display.style.display = "block"; display.style.backgroundColor = "#fee"; display.style.color = "#c00"; display.innerHTML = "Error: Please enter a valid overhead cost and an allocation base greater than zero."; return; } var rate = overheadNum / baseNum; var resultText = ""; // If the base is a currency (Dollars), we express it as a percentage if (unit.indexOf("$") !== -1 || unit.toLowerCase().indexOf("dollars") !== -1 || unit.toLowerCase().indexOf("cost") !== -1) { var percentage = (rate * 100).toFixed(2); resultText = "Predetermined Overhead Rate: " + percentage + "% of " + unit; } else { resultText = "Predetermined Overhead Rate: $" + rate.toFixed(2) + " per " + unit; } display.style.display = "block"; display.style.backgroundColor = "#e7f3ff"; display.style.color = "#003366"; display.innerHTML = resultText; }

Leave a Comment