Hourly Selling Rate Calculation

Hourly Selling Rate Calculator

Total personal income you want to earn per year.
Software, rent, insurance, marketing, and taxes.
Accounting for holidays and vacation time.
Total time spent on business operations.
% of time spent on client work vs. admin/proposals.

Recommended Hourly Rate:

Total Annual Target:

Total Billable Hours per Year:

This rate ensures you cover all overhead and earn your desired salary based on your utilization.

function calculateSellingRate() { var salary = parseFloat(document.getElementById('desiredSalary').value); var overhead = parseFloat(document.getElementById('annualOverhead').value); var weeks = parseFloat(document.getElementById('weeksPerYear').value); var hoursPerWeek = parseFloat(document.getElementById('hoursPerWeek').value); var efficiency = parseFloat(document.getElementById('billableEfficiency').value); if (isNaN(salary) || isNaN(overhead) || isNaN(weeks) || isNaN(hoursPerWeek) || isNaN(efficiency) || efficiency <= 0 || hoursPerWeek <= 0 || weeks <= 0) { alert("Please enter valid positive numbers for all fields."); return; } var totalRevenueRequired = salary + overhead; var totalPotentialHours = weeks * hoursPerWeek; var actualBillableHours = totalPotentialHours * (efficiency / 100); var hourlyRate = totalRevenueRequired / actualBillableHours; document.getElementById('finalRate').innerText = "$" + hourlyRate.toFixed(2) + " / hour"; document.getElementById('totalTarget').innerText = "$" + totalRevenueRequired.toLocaleString(); document.getElementById('billableHours').innerText = actualBillableHours.toFixed(0) + " hours"; document.getElementById('sellingRateResult').style.display = 'block'; }

Understanding the Hourly Selling Rate Calculation

Whether you are a freelancer, a consultant, or a service-based business owner, determining your hourly selling rate is one of the most critical financial decisions you will make. If you set it too low, you risk burnout and business failure. If you set it too high without justification, you may struggle to find clients.

The Formula for Success

The hourly selling rate is not just "what you want to get paid." It is a mathematical calculation that accounts for three primary variables:

  • Desired Annual Salary: The net income you need to live and save for the future.
  • Overhead Costs: The cost of doing business (utilities, software, marketing, taxes, hardware).
  • Billable Utilization: The reality that you cannot bill for every hour you work. Admin, marketing, and learning are essential but non-billable.

Calculation Example

Let's look at a realistic scenario for a graphic designer:

Desired Salary: $75,000

Annual Expenses: $12,000 (Software, health insurance, home office)

Total Revenue Goal: $87,000

Weeks Worked: 48 (4 weeks for vacation/sick days)

Hours per Week: 40

Utilization Rate: 60% (Realistic for solo founders)

Calculation:

Total Hours = 48 * 40 = 1,920

Billable Hours = 1,920 * 0.60 = 1,152

Hourly Selling Rate: $87,000 / 1,152 = $75.52 / hour

Why Utilization Efficiency Matters

Many new business owners make the mistake of dividing their revenue goal by a full 2,080-hour work year (40 hours x 52 weeks). This results in a rate that is far too low. In reality, you will spend roughly 20% to 40% of your time on activities that no client will ever pay for, such as:

  • Invoicing and bookkeeping
  • Writing proposals and attending sales calls
  • Continuing education and professional development
  • IT issues and hardware maintenance

By using the Hourly Selling Rate Calculator above, you ensure that your "overhead time" is priced into your client engagements, allowing your business to remain sustainable and profitable over the long term.

Leave a Comment