Calculation Method |
Description |
Formula |
Less is Better |
|
If (Target = 0) If (Actual <= 0) then 100 Else 0 If ( Target > 0 1 – (Actual/Target) + 1 Else Actual/Target |
More is Better |
|
If (Target = 0) If (Actual >= 0) then 100 Else 0 Else Actual/Target |
Goal Post |
|
If Actual < LB then: (Actual/LB) If Actual > UP then: LB-(Actual – UB)/LB
UB (Upper Boundary) = Target +(Target*Variance/100) LB (Lower Boundary) = Target - (Target*Variance/100) |
The below table explains how the calculations are reflected in traffic lights, which uses different colours to denote the performance
Calculation Methods |
Green |
Amber |
Red |
Less is Better |
Performance >= 100 |
(100 - Variance) >= Performance < 100 |
Performance < (100 - Variance) |
More is Better |
Performance >= 100 |
(100 - Variance) >= Performance < 100 |
Performance < (100 - Variance) |
Goal Post |
Performance = 100 |
N/A |
Performance <> 100 |
Copyright © 2014-2015 CAMMS Online Help. All rights reserved.
Last revised: September 04, 2018