How to Calculate the Overhead Absorption Rate

Overhead Absorption Rate (OAR) Calculator

Use this calculator to determine the rate at which indirect manufacturing costs (overhead) are allocated to production based on a specific activity driver.

Estimated indirect costs for the period (rent, utilities, indirect labor, depreciation).
Direct Labor Hours Machine Hours Units of Production Direct Labor Cost ($) Direct Material Cost ($) The primary driver that causes overhead costs to change.
Enter total hours, units, or dollars depending on the selected base type above.
function calculateOAR() { var overheadInput = document.getElementById('totalOverhead').value; var baseVolumeInput = document.getElementById('baseVolume').value; var baseTypeSelect = document.getElementById('baseType'); var selectedBaseText = baseTypeSelect.options[baseTypeSelect.selectedIndex].text; var resultDiv = document.getElementById('oarResult'); var overhead = parseFloat(overheadInput); var volume = parseFloat(baseVolumeInput); resultDiv.style.display = 'block'; if (isNaN(overhead) || isNaN(volume) || overhead < 0 || volume <= 0) { resultDiv.innerHTML = "Please enter valid positive numbers. The activity volume must be greater than zero."; resultDiv.style.borderLeftColor = '#d63638'; resultDiv.style.backgroundColor = '#fdd'; return; } // Reset result style resultDiv.style.borderLeftColor = '#0073aa'; resultDiv.style.backgroundColor = '#eef'; var oar = overhead / volume; var finalResultText = ""; // Format result differently if the base is a cost (percentage) vs hours/units (dollar rate) if (selectedBaseText.includes("Cost")) { var percentageOAR = (oar * 100).toFixed(2); finalResultText = "" + percentageOAR + "% of " + selectedBaseText; } else { var currencyOAR = oar.toFixed(2); // Simple currency formatting assuming USD for this context, can be adapted. finalResultText = "$" + currencyOAR + " per " + selectedBaseText.replace(' ($)', ").slice(0, -1); // Remove ($) and plural s for singular labeling } resultDiv.innerHTML = "The Budgeted Overhead Absorption Rate is:" + finalResultText + ""; }

Understanding How to Calculate the Overhead Absorption Rate

The Overhead Absorption Rate (OAR), also known as the predetermined overhead rate, is a crucial accounting metric used in traditional costing systems. It allows businesses to allocate indirect manufacturing costs—such as factory rent, depreciation on machinery, and utility bills—to specific products or jobs.

Since indirect costs cannot be traced directly to a single unit of production in an economically feasible way, they must be "absorbed" into the cost of products using a calculated rate based on estimates at the beginning of an accounting period.

The Formula for Overhead Absorption Rate

The OAR is calculated before the period begins using budgeted figures. The fundamental formula is:

OAR = Total Budgeted Manufacturing Overhead Costs / Total Budgeted Activity Base

Once calculated, this rate is applied to actual production activity throughout the year to determine the "applied overhead" for specific jobs or products.

Choosing the Right Activity Base

The accuracy of product costing depends heavily on selecting an "activity base" (or cost driver) that genuinely reflects what causes overhead costs to be incurred. Common bases include:

  • Direct Labor Hours: Often used in labor-intensive industries where employees determine the pace of production.
  • Machine Hours: Ideal for highly automated manufacturing where machinery is the primary driver of costs.
  • Direct Labor Cost: Used when overhead costs relate closely to wage rates, though often less accurate than labor hours due to varying pay scales.
  • Units of Production: Simple to use but only appropriate if a company produces a single, homogeneous product.

Why is Accurate OAR Calculation Important?

  1. Product Pricing: Without allocating overhead, the calculated cost of a product is incomplete. This can lead to underpricing products and eroding profit margins.
  2. Inventory Valuation: Accounting standards (like GAAP and IFRS) require that inventory values on the balance sheet include a share of manufacturing overhead.
  3. Performance Analysis: Comparing applied overhead (based on the OAR) with actual overhead costs incurred helps management identify variances and control spending.

Example Calculation

Let's imagine "Apex Furniture Mfg." They are preparing their budget for the upcoming year.

  • They estimate total manufacturing overhead costs (rent, supervisor salaries, machine maintenance, electricity) will be $600,000.
  • Because their factory is heavily automated, they determine that Machine Hours is the best cost driver.
  • They estimate they will run machines for a total of 30,000 hours during the year.

To find their OAR:

$600,000 (Total Overhead) / 30,000 (Total Machine Hours) = $20.00 per Machine Hour.

If a specific dining table requires 5 machine hours to produce, Apex will allocate $100 (5 hours x $20/hr) of overhead cost to that table.

Leave a Comment