Hi Raoul ,
The problem is due to something else !
You have two measures in your system ; one where less is better , and the other where more is better.
Your time measures are of the former type , while the lap measure is of the latter type.
The same formula cannot be used for both ; in one case , you have to use subtraction to check for the 3 % and 10 % improvement , while in the other case , you need to use addition.
These two formula will therefore have to be used appropriately , depending on the type of measure you are evaluating.
=IF(ISBLANK(L2),"No Data",IF(L2>=96,10,IF(L2>=62,IF(L2>=K2*(1+0.03),9,8),IF(L2>=K2*(1+0.1),7,IF(L2>0,6,"Error")))))
The above applies to a measure where more is better.
=IF(ISBLANK(O2),"No Data",IF(O2<=TIME(0,8,0),10,IF(O2<=TIME(0,10,30),IF(O2<=N2*(1-0.03),9,8),IF(O2<=N2*(1-0.1),7,IF(O2>0,6,"Error")))))
The above applies to one where less is better.
If you wish to take the first one , and apply it to a measure where less is better , change the addition signs to subtraction signs and change the comparison signs , as follows :
=IF(ISBLANK(R2),"No Data",IF(R2<62,10,IF(R2<=95,IF(R2<=Q2*(1-0.03),9,8),IF(R2<=Q2*(1-0.1),7,IF(R2>0,6,"Error")))))
Narayan