Man Day Rate Calculation

.man-day-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 #e1e4e8; border-radius: 8px; background-color: #f9f9f9; color: #333; } .man-day-calculator-container h2 { color: #2c3e50; text-align: center; margin-bottom: 20px; } .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } .input-group { display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .input-group input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .calc-btn { grid-column: span 2; background-color: #0073aa; color: white; padding: 12px; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } .calc-btn:hover { background-color: #005177; } .result-box { grid-column: span 2; background-color: #fff; border: 2px solid #0073aa; padding: 20px; border-radius: 4px; margin-top: 10px; text-align: center; } .result-item { margin-bottom: 10px; } .result-value { font-size: 24px; font-weight: bold; color: #0073aa; } .article-section { margin-top: 40px; line-height: 1.6; } .article-section h3 { color: #2c3e50; border-bottom: 2px solid #0073aa; padding-bottom: 5px; } @media (max-width: 600px) { .calc-grid { grid-template-columns: 1fr; } .calc-btn { grid-column: span 1; } .result-box { grid-column: span 1; } }

Man-Day Rate Calculator

Total Annual Cost to Company:
$0.00

Break-even Daily Rate:
$0.00

Recommended Man-Day Billing Rate:
$0.00

What is a Man-Day Rate?

A Man-Day Rate is the total cost or price of one person's labor for a single working day (typically 8 hours). This metric is critical in project management, consulting, and construction for estimating project budgets and determining contract pricing. It is not just the employee's salary divided by days; it must account for "hidden" costs like taxes, insurance, and company overhead.

How to Calculate Man-Day Rate

To calculate an accurate man-day rate, you must follow a three-step process:

  1. Identify Total Employment Cost: This includes the base salary plus the "burden" (Social Security, health insurance, 401k matching, and payroll taxes).
  2. Add Overhead: Factor in the cost of the office space, computers, software licenses, and administrative support allocated to that person.
  3. Determine Billable Days: Subtract weekends, public holidays, and personal vacation days from the 365 days in a year. Most professionals have between 220 and 240 billable days annually.

The Man-Day Calculation Formula

The math behind our calculator uses the following logic:

Total Annual Cost = Salary + (Salary * Burden%) + Overhead
Break-even Rate = Total Annual Cost / Billable Days
Selling Rate = Break-even Rate / (1 – Profit Margin%)

Example Calculation

Suppose you hire a developer with a salary of $80,000. The employer burden is 25% ($20,000), and their share of office overhead is $10,000 per year. This brings the total cost to $110,000.

If they work 220 billable days per year, your break-even man-day rate is $500. If you want a 20% profit margin, you would bill the client approximately $625 per man-day.

Why Understanding Man-Days Matters

Underestimating the man-day rate is a common reason for project deficits. Many freelancers and small agencies forget to include overhead and non-billable time (like admin work or training). By using a formal man-day rate calculation, you ensure that every project covers its share of company expenses and contributes to the net profit of the business.

function calculateManDayRate() { var salary = parseFloat(document.getElementById('annualSalary').value); var burden = parseFloat(document.getElementById('burdenRate').value); var overhead = parseFloat(document.getElementById('overheadCosts').value); var days = parseFloat(document.getElementById('billableDays').value); var margin = parseFloat(document.getElementById('profitMargin').value); if (isNaN(salary) || isNaN(burden) || isNaN(overhead) || isNaN(days) || isNaN(margin) || days = 1) { finalRate = breakEven; // Prevent division by zero or negative } else { finalRate = breakEven / (1 – marginDecimal); } // Display Results document.getElementById('totalAnnualCost').innerText = "$" + totalCost.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('breakEvenRate').innerText = "$" + breakEven.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('finalManDayRate').innerText = "$" + finalRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resultsDisplay').style.display = 'block'; }

Leave a Comment