Calculate the weighted average hourly cost for your crew mix.
Includes payroll taxes, insurance, benefits, etc.
Base Composite Hourly Rate
$0.00
Fully Burdened Hourly Rate
$0.00
Total Crew Hours
0.00
Total Crew Cost
$0.00
function calculateCompositeRate() {
var totalWeightedCost = 0;
var totalHours = 0;
// Loop through 5 possible inputs
for (var i = 1; i 0) {
baseCompositeRate = totalWeightedCost / totalHours;
}
var burdenInput = document.getElementById('burdenPercent');
var burdenPercent = 0;
if (burdenInput && burdenInput.value) {
burdenPercent = parseFloat(burdenInput.value);
}
var burdenedCompositeRate = baseCompositeRate * (1 + (burdenPercent / 100));
// Display Results
document.getElementById('displayBaseRate').innerHTML = '$' + baseCompositeRate.toFixed(2);
document.getElementById('displayBurdenedRate').innerHTML = '$' + burdenedCompositeRate.toFixed(2);
document.getElementById('displayTotalHours').innerHTML = totalHours.toFixed(1);
document.getElementById('displayTotalCost').innerHTML = '$' + (totalWeightedCost * (1 + (burdenPercent / 100))).toFixed(2);
// Show result box
var resultBox = document.getElementById('resultBox');
resultBox.style.display = 'block';
// Smooth scroll to results
resultBox.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}
What is a Composite Labor Rate?
A Composite Labor Rate is a weighted average hourly wage used primarily in the construction, manufacturing, and service industries. It represents the average cost per hour to employ a crew of workers with varying skill levels and pay rates. Rather than calculating the cost of a project by tracking every individual employee's specific wage, project managers use a composite rate to streamline estimating and bidding processes.
This rate is crucial when a task requires a "crew mix"—for example, one foreman, two journeymen, and one apprentice. Since the foreman earns significantly more than the apprentice, simply averaging their wages (adding them up and dividing by the number of workers) is often inaccurate if they work different numbers of hours. A true composite rate accounts for the total hours worked by each classification.
How to Calculate Composite Labor Rate
To calculate the composite labor rate accurately, you must consider both the base wages and the hours contributed by each role. Furthermore, a "Burdened" composite rate includes additional costs such as taxes, insurance, and benefits.
The core formula for the Base Composite Rate is:
Composite Rate = (Total Cost of All Labor) ÷ (Total Hours Worked)
Step-by-Step Calculation Example
Imagine you are bidding on a masonry job that requires an 8-hour day for a 4-person crew:
1 Foreman @ $45.00/hr for 8 hours
2 Masons @ $35.00/hr for 8 hours each (16 hours total)
3. Divide Cost by Hours:
$1,080 ÷ 32 = $33.75 per hour
This $33.75 is your base composite rate. If you apply a 20% labor burden for taxes and insurance, your final estimating rate would be $33.75 × 1.20 = $40.50 per hour.
Why Use a Composite Rate?
✅ Simplified Estimation: Instead of tracking individual employees, estimators can apply a single rate to the total estimated man-hours for a project.
✅ Consistent Bidding: Using standard composite rates ensures that all bids are calculated using the same baseline, preventing underbidding due to variable crew assignments.
✅ Anonymity and Flexibility: It allows companies to bid without knowing exactly which specific employees will perform the work, only the type of crew required.
Understanding Labor Burden
The "Labor Burden" input in the calculator above allows you to account for costs beyond the hourly wage. In many industries, the base wage only accounts for 60-70% of the actual cost of an employee.
Common Labor Burden costs include:
FICA (Social Security & Medicare)
FUTA/SUTA (Unemployment Taxes)
Worker's Compensation Insurance
General Liability Insurance
Health Insurance & Retirement Benefits
Paid Time Off (Vacation, Sick, Holiday)
Always ensure your composite rate includes this burden percentage to ensure your projects remain profitable.