Yes Bank Savings Account Interest Rate Calculator

.hiring-calc-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 #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; line-height: 1.6; } .hiring-calc-header { text-align: center; margin-bottom: 30px; } .hiring-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .hiring-calc-grid { grid-template-columns: 1fr; } } .hiring-calc-group { display: flex; flex-direction: column; } .hiring-calc-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .hiring-calc-group input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .hiring-calc-btn { background-color: #0073aa; color: white; padding: 15px 25px; border: none; border-radius: 4px; cursor: pointer; font-size: 18px; font-weight: bold; width: 100%; transition: background-color 0.3s; } .hiring-calc-btn:hover { background-color: #005177; } .hiring-calc-result { margin-top: 30px; padding: 20px; background-color: #fff; border: 2px solid #0073aa; border-radius: 8px; display: none; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 18px; } .result-item strong { color: #0073aa; } .article-section { margin-top: 40px; border-top: 1px solid #ddd; padding-top: 30px; } .article-section h2 { color: #222; margin-bottom: 15px; } .article-section h3 { color: #444; margin-top: 20px; }

Cost Per Hire Calculator

Calculate your total recruitment investment and optimize your HR budget.

Total External Costs:
Total Internal Costs:
Total Recruitment Investment:

Cost Per Hire:

Understanding Cost Per Hire (CPH)

Cost Per Hire is a critical human resources metric that measures the average amount of money a company spends to recruit a new employee. For business owners and HR managers, understanding this number is essential for effective budget planning and identifying inefficiencies in the recruitment pipeline.

How to Calculate Cost Per Hire

The standard formula for Cost Per Hire is the sum of all Internal and External costs divided by the total number of hires in a specific period.

CPH = (External Costs + Internal Costs) / Total Number of Hires

External vs. Internal Recruitment Costs

  • External Costs: These include third-party expenses such as recruitment agency fees, advertising costs on job boards (LinkedIn, Indeed), career fair registrations, travel expenses for candidates, and background screening services.
  • Internal Costs: These represent the internal resources consumed during the process. This includes the pro-rated salary of internal recruiters, employee referral bonuses, and the cost of the Applicant Tracking System (ATS) or other HR software.

Example Calculation

Imagine your company spent $10,000 on an external agency, $2,000 on LinkedIn ads, and $3,000 on internal recruiter hours. You also paid out $1,000 in referral bonuses to existing staff. During this period, you hired 4 new employees.

  • Total Costs: $10,000 + $2,000 + $3,000 + $1,000 = $16,000
  • Total Hires: 4
  • Cost Per Hire: $16,000 / 4 = $4,000 per employee.

Why Monitoring This Metric Matters

If your Cost Per Hire is significantly higher than the industry average (which often hovers around $4,000 – $5,000 according to SHRM), it may indicate that your recruitment process is inefficient. By tracking this data, you can decide whether to shift budget from expensive agencies to internal referral programs or optimize your job board spending for better ROI.

function calculateHiringCost() { var extAgency = parseFloat(document.getElementById('extAgency').value) || 0; var extAds = parseFloat(document.getElementById('extAds').value) || 0; var extTech = parseFloat(document.getElementById('extTech').value) || 0; var intRecruiter = parseFloat(document.getElementById('intRecruiter').value) || 0; var intReferral = parseFloat(document.getElementById('intReferral').value) || 0; var totalHires = parseInt(document.getElementById('totalHires').value) || 0; if (totalHires <= 0) { alert("Please enter a valid number of hires (minimum 1)."); return; } var totalExternal = extAgency + extAds + extTech; var totalInternal = intRecruiter + intReferral; var totalInvestment = totalExternal + totalInternal; var costPerHire = totalInvestment / totalHires; document.getElementById('resExt').innerText = "$" + totalExternal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resInt').innerText = "$" + totalInternal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resTotal').innerText = "$" + totalInvestment.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resFinal').innerText = "$" + costPerHire.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('hiringResultBox').style.display = 'block'; }

Leave a Comment