Please enter valid positive numbers. Target Goal cannot be zero.
Your Achievement Rate is:
0%
Understanding Achievement Rate
The achievement rate is a Key Performance Indicator (KPI) used by businesses, sales teams, and individuals to measure how close they are to reaching a predefined objective. Whether you are tracking annual sales targets, project milestones, or fitness goals, calculating this percentage provides a clear picture of performance and efficiency.
Achievement Rate (%) = (Actual Result / Target Goal) x 100
How to Calculate Achievement Rate: Step-by-Step
To determine your success percentage, follow these three simple steps:
Identify your Target: This is the 100% mark. It could be a dollar amount in sales, a number of units produced, or a specific weight loss goal.
Determine your Actual Result: This is the real-world data you have collected at the end of the tracking period.
Divide and Multiply: Divide your actual result by the target, then multiply by 100 to get the percentage.
Practical Examples
Example 1: Sales Target
If a salesperson has a monthly target of $50,000 but manages to close $45,000 in deals, the calculation is:
(45,000 / 50,000) x 100 = 90% Achievement Rate.
Example 2: Over-Performance
If a manufacturing plant aims to produce 1,000 units but produces 1,200 units through increased efficiency:
(1,200 / 1,000) x 100 = 120% Achievement Rate.
Why Tracking Achievement Rate Matters
Performance Benchmarking: It allows for fair comparison between different departments or time periods.
Resource Allocation: Consistently low achievement rates may indicate a need for more resources or a revision of the targets.
Motivation: Visualizing progress through percentages helps teams stay focused on the "finish line."
Interpreting the Results
An achievement rate of 100% means the goal was met exactly. Anything above 100% indicates over-performance, while anything below 100% suggests the goal was not fully reached. In many corporate environments, an achievement rate of 90-95% is considered "on track," while anything below 80% often triggers a performance review or strategy adjustment.
function calculateAchievementRate() {
var target = parseFloat(document.getElementById('targetGoal').value);
var actual = parseFloat(document.getElementById('actualResult').value);
var errorDiv = document.getElementById('achievementError');
var resultArea = document.getElementById('achievementResultArea');
var displayRate = document.getElementById('finalRateDisplay');
var statusMsg = document.getElementById('statusMessage');
// Reset display
errorDiv.style.display = 'none';
resultArea.style.display = 'none';
// Validation
if (isNaN(target) || isNaN(actual) || target = 100) {
message = "Excellent! You have exceeded your target.";
color = "#27ae60";
} else if (rate >= 90) {
message = "Great job! You are very close to your goal.";
color = "#2980b9";
} else if (rate >= 70) {
message = "Good effort, but there is room for improvement.";
color = "#f39c12";
} else {
message = "Performance is significantly below target.";
color = "#e74c3c";
}
statusMsg.innerText = message;
displayRate.style.color = color;
resultArea.style.display = 'block';
}