How to Calculate Charge Out Rate per Hour

Charge Out Rate Calculator

Your Calculation Results


Total Annual Costs: $0.00
Total Yearly Billable Hours: 0 hrs
Break-even Hourly Rate: $0.00
Recommended Charge Out Rate: $0.00
function calculateChargeOutRate() { var salary = parseFloat(document.getElementById('desiredSalary').value); var overheads = parseFloat(document.getElementById('annualOverheads').value); var hoursPerWeek = parseFloat(document.getElementById('billableHoursPerWeek').value); var weeksPerYear = parseFloat(document.getElementById('workingWeeksPerYear').value); var profitMargin = parseFloat(document.getElementById('targetProfit').value); if (isNaN(salary) || isNaN(overheads) || isNaN(hoursPerWeek) || isNaN(weeksPerYear) || isNaN(profitMargin)) { alert('Please enter valid numbers in all fields.'); return; } var totalAnnualCosts = salary + overheads; var totalBillableHours = hoursPerWeek * weeksPerYear; if (totalBillableHours <= 0) { alert('Total billable hours must be greater than zero.'); return; } var breakEvenRate = totalAnnualCosts / totalBillableHours; // Formula: Charge Out Rate = Break Even Rate / (1 – Profit Margin %) var finalRate = breakEvenRate / (1 – (profitMargin / 100)); document.getElementById('totalCostsDisplay').innerText = '$' + totalAnnualCosts.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('totalHoursDisplay').innerText = totalBillableHours.toLocaleString() + ' hrs'; document.getElementById('breakEvenRateDisplay').innerText = '$' + breakEvenRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('finalRateDisplay').innerText = '$' + finalRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + ' /hr'; document.getElementById('resultsArea').style.display = 'block'; }

Understanding How to Calculate Your Charge Out Rate

Setting the correct hourly rate is one of the most critical decisions for freelancers, consultants, and service-based business owners. If you set it too low, you risk burnout and financial instability. If you set it too high without justifying the value, you may struggle to secure clients.

The Components of a Charge Out Rate

To calculate a sustainable rate, you must look beyond just your take-home pay. A professional charge out rate consists of four key pillars:

  • Desired Salary: This is the amount you want to earn personally before taxes. It should reflect your experience level and the market standard for your role.
  • Business Overheads: These are the costs required to keep the lights on. It includes software subscriptions, rent, insurance, marketing, equipment, and professional fees (like accounting).
  • Billable vs. Non-Billable Hours: You cannot bill 40 hours a week. Time spent on admin, sales, and professional development is "non-billable." Most successful consultants find that only 60-70% of their working time is actually billable to a client.
  • Profit Margin: Business profit is different from your salary. Profit provides a buffer for slow months, allows for reinvestment in the business, and rewards you for the risk of business ownership.

The Calculation Formula

The math behind our calculator follows a standard accounting approach:

1. Total Costs = Desired Salary + Overheads
2. Break-Even Rate = Total Costs / (Weeks Worked × Billable Hours Per Week)
3. Final Rate = Break-Even Rate / (1 – Desired Profit Margin %)

A Practical Example

Let's say Jane wants to earn a $90,000 salary. Her annual expenses (laptop, coffee, software, insurance) total $10,000. She plans to work 48 weeks a year, and after accounting for meetings and admin, she has 25 billable hours per week. She wants a 15% profit margin.

  • Total Annual Cost: $100,000
  • Total Billable Hours: 1,200 (48 weeks × 25 hours)
  • Break-Even Rate: $83.33 per hour
  • Final Charge Out Rate: $83.33 / 0.85 = $98.04 per hour

Top Tips for Setting Your Rate

1. Factor in Tax: Remember that your charge out rate is gross income. You will still need to pay income tax, self-employment tax, and potentially GST/VAT depending on your jurisdiction.

2. Review Annually: Your overheads and inflation increase every year. Make it a habit to review your hourly rate every 12 months to ensure your margins aren't shrinking.

3. Value-Based Pricing: While the hourly calculation is a great floor (the minimum you should accept), consider "Value-Based Pricing" for high-impact projects where the result is worth far more to the client than the hours you put in.

Leave a Comment