Determine your ideal hourly and daily rate based on income goals, expenses, and billable capacity.
(Exclude admin, sales, and marketing time)
(Vacation, holidays, and sick leave)
Buffer for business growth and retirement
Your Recommended Rates:
Hourly Rate$0
Daily Rate (8h)$0
Breakdown: To reach your goals, you need a total annual revenue of . You have billable hours available per year.
How to Calculate Your Consultant Rate
Transitioning from a full-time employee to an independent consultant requires a shift in how you view compensation. You are no longer just an "employee" of your own firm; you are the business owner responsible for overhead, taxes, and profit.
The Formula for Success
The basic logic for a consultant rate follows this sequence:
Sum Your Costs: Combine your target take-home salary and your business expenses (software, insurance, marketing).
Apply a Profit Margin: Add a percentage (typically 10-25%) to ensure the business is growing, not just covering costs.
Determine Billable Capacity: Calculate how many hours you can realistically charge clients. Note that out of a 40-hour week, you will likely spend 10-15 hours on non-billable tasks like networking and invoicing.
Divide: Total Revenue Needed / Total Billable Hours = Hourly Rate.
Example Calculation
Suppose you want to earn a net salary of $100,000. Your expenses are $20,000. You want a 20% profit margin. Your total revenue goal is $150,000 (($100k + $20k) / 0.8).
If you take 4 weeks off and bill 25 hours per week, you have 1,200 billable hours per year (48 weeks × 25 hours). Your rate would be $125 per hour ($150,000 / 1,200).
Factors to Consider
Self-Employment Tax: Unlike an employee, you pay both sides of Social Security and Medicare. This must be factored into your "expenses" or "target salary."
Value-Based Pricing: While hourly calculation provides a "floor" for your business, consider charging based on the value or ROI you provide to the client for specific projects.
Market Rates: Research what competitors with similar experience levels are charging in your specific niche.
function calculateConsultantRate() {
var salary = parseFloat(document.getElementById('targetSalary').value) || 0;
var expenses = parseFloat(document.getElementById('annualExpenses').value) || 0;
var billableHoursPerWeek = parseFloat(document.getElementById('billableHours').value) || 0;
var vacationWeeks = parseFloat(document.getElementById('vacationWeeks').value) || 0;
var profitMargin = parseFloat(document.getElementById('profitMargin').value) || 0;
if (salary <= 0 || billableHoursPerWeek <= 0) {
alert("Please enter valid numbers for salary and billable hours.");
return;
}
// 1. Calculate Total Working Weeks
var workingWeeks = 52 – vacationWeeks;
if (workingWeeks <= 0) workingWeeks = 1;
// 2. Calculate Total Annual Billable Hours
var totalAnnualHours = workingWeeks * billableHoursPerWeek;
// 3. Calculate Required Revenue (Adjusted for Profit Margin)
// Formula: (Salary + Expenses) / (1 – (Margin / 100))
var costBasis = salary + expenses;
var marginMultiplier = 1 – (profitMargin / 100);
// Guard against 100% or higher margin inputs
if (marginMultiplier <= 0) marginMultiplier = 0.01;
var totalRevenueNeeded = costBasis / marginMultiplier;
// 4. Calculate Rates
var hourlyRate = totalRevenueNeeded / totalAnnualHours;
var dailyRate = hourlyRate * 8;
// Display Results
document.getElementById('hourlyOutput').innerText = '$' + hourlyRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('dailyOutput').innerText = '$' + dailyRate.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2});
document.getElementById('totalRevenueOutput').innerText = '$' + totalRevenueNeeded.toLocaleString(undefined, {maximumFractionDigits: 0});
document.getElementById('totalHoursOutput').innerText = totalAnnualHours.toLocaleString() + ' hours';
document.getElementById('rateResult').style.display = 'block';
// Smooth scroll to result
document.getElementById('rateResult').scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}