Progress calculation for the threshold
🔢 Last Value Method
Takes the most recent period's performance and returns 100% if target was met, 0% if not
Best for current performance
Real-time dashboards
Current month focus
Immediate feedback
How it works:
Take the last added value from the most recent period
Compare it against the threshold for that period
If condition is met → Progress = 100%
If condition is not met → Progress = 0%
Current Calculation:
Last period: Dec - Value: 95, Threshold: 100
Result: ❌ Target not met→ Progress = 0%
🪫 Minimum of All Periods Method
Best for quality assurance
• Quality standards
• Risk management
• Compliance tracking
• "Weakest link" analysis
Finds the worst performing period and returns 100% if it met conditions, 0% if not
How it works:
Find the period with the lowest performance ratio (value/threshold)
Check if this worst period met its conditions
If worst period met conditions → Progress = 100%
If worst period failed → Progress = 0%
Current Calculation:
Worst performing period: Sep - Value: 88, Threshold: 100(Ratio: 88%)
Result: ❌ Worst period failed→ Progress = 0%
➗ Average of All Periods Method
Best for overall performance
Annual reviews (e.g. how ofter customer support miss/hit monthly KPI)
Trend analysis
Calculates the percentage of periods that met their conditions
How it works:
Count periods that met conditions (each counts as 100%)
Count periods that failed conditions (each counts as 0%)
Calculate: (Successful periods × 100%) ÷ Total periods
Result is the overall progress percentage
Current Calculation:
Successful periods: 7 × 100% = 700%
Failed periods: 5 × 0% = 0%
Total calculation: (700% + 0%) ÷ 12 periods
Result: Progress = 58.33%