1. Scope
Calculates revenue per employee and profit per employee and positions the result against public-company benchmarks by industry. It is a productivity indicator, not a valuation metric.
2. Inputs and outputs
Inputs
- annualRevenue number (currency)
- operatingProfit number (currency) default: 0
- headcount number
Outputs
- revenuePerEmployee
annualRevenue / headcount.
- profitPerEmployee
operatingProfit / headcount.
Engine source: src/lib/revenue-per-employee-calculator/engine.ts
3. Formula / scoring logic
rpe = annual_revenue / headcount
ppe = operating_profit / headcount 4. Assumptions
- Headcount is full-time equivalent (FTE). Part-time and contractor counts should be pro-rated before entry.
- Revenue is GAAP-like (booked revenue), not bookings or cash collected.
5. Data sources
6. Known limitations
- Cross-industry benchmarks vary by orders of magnitude. Oil majors run $3–5M/head; consulting firms $200–400K/head. Compare within-industry.
- A high RPE can mean productivity or aggressive outsourcing; the tool does not distinguish.
7. Reproducibility
Input
annualRevenue = $5,000,000, operatingProfit = $1,000,000, headcount = 20.
Expected output
rpe = $250,000, ppe = $50,000.
8. Change log
- 2026-04-24 methodology page first published.
Worked example
Run live against the same engine this site ships
(/engines/revenue-per-employee-calculator.js).
The inputs and outputs below are recomputed on every build and
independently re-verified in CI — they are never hand-authored.
Input
- tool
- revenue_per_employee
- annual_revenue
- 1000000
- number_of_employees
- 10
Output
- revenuePerEmployee
- 100000
- monthlyRevenuePerEmployee
- 8333.33
Frequently asked questions
- What does the Revenue Per Employee Calculator calculate?
- Calculates revenue per employee and profit per employee and positions the result against public-company benchmarks by industry. It is a productivity indicator, not a valuation metric.
- What inputs does the Revenue Per Employee Calculator need?
- It takes 3 inputs: annualRevenue, operatingProfit (default 0), headcount. Outputs returned: revenuePerEmployee, profitPerEmployee.
- What formula does the Revenue Per Employee Calculator use?
- The exact computation is: rpe = annual_revenue / headcount; ppe = operating_profit / headcount
- Can I verify the Revenue Per Employee Calculator with a worked example?
- Yes. With annualRevenue = $5,000,000, operatingProfit = $1,000,000, headcount = 20. the tool returns rpe = $250,000, ppe = $50,000.
- Where does the Revenue Per Employee Calculator get its benchmark data?
- Reference data is sourced from: SEC EDGAR (public-company 10-Ks, for self-assembled benchmark comparisons) (as of 2024).
- What can the Revenue Per Employee Calculator not tell me?
- Known limitations: Cross-industry benchmarks vary by orders of magnitude. Oil majors run $3–5M/head; consulting firms $200–400K/head. Compare within-industry. A high RPE can mean productivity or aggressive outsourcing; the tool does not distinguish.