IF Function Formula with tolerance relative to whether benchmark is pos/neg

NickPlanning

New Member
Joined
Dec 11, 2018
Messages
10
Hi All,

I have a list of performance percentage figures which I need to give a score of 0, 1 or 2 depending on whether they improve on a benchmark or not.


If a figure is greater than the benchmark figure, a score of 2 is returned. If the figure is lower than the benchmark figure but within 10%, a score of 1 is returned. If the figure is lower outright after factoring in the 10% tolerance, a score of 0 is returned.


I had managed to achieve this using the following formula: =(IF(B1>$B$25,"2",IF(B1>($B$25*0.9),"1","0"))), with B25 being the benchmark figure. However, when the benchmark figure is a negative integer, the formula does not function until the "0.9" is amended to "1.1". Is there a simpler way of doing this that doesn't involve amending the formula relative to whether the benchmark is negative/positive?


As a worked example. If the benchmark was -2.5 the below figures would score the figure in brackets:


5 (2)
2.5 (2)
-2.5 (1)
-2.4 (2)
-2.65 (1)
-4 (0)

Many thanks in advance!
 
=IF(B$2<0,IF(B2>B$2,2,IF(B2<b$2*1.1,0,1)),if(b2 style="color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);">=B$2,2,IF(B2<b$2*0.9,0,1)))


you cannot say if b2>b2</b$2*0.9,0,1)))
</b$2*1.1,0,1)),if(b2>
 
Upvote 0

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
=IF(B$2<0,IF(B2>B$2,2,IF(B2<b$2*1.1,0,1)),if(b2 style="color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);">=B$2,2,IF(B2<b$2*0.9,0,1)))


you cannot say if b2>b2</b$2*0.9,0,1)))
</b$2*1.1,0,1)),if(b2>


Because it refers back to itself? I'm confused as to why the results aren't consistently 1, 2 or 0 when the B2 compares itself back to B2 or C2 to C2 etc.
 
Upvote 0
say B2 was 8

you cannot say.....if 8 is bigger than 8 then do something...............

you are comparing scores with a target

so if score greater than target return a 2
if score less than target but within 10% of target return a 1
in all other cases return a zero
 
Upvote 0
say B2 was 8

you cannot say.....if 8 is bigger than 8 then do something...............

you are comparing scores with a target

so if score greater than target return a 2
if score less than target but within 10% of target return a 1
in all other cases return a zero

This is perhaps where it may get complicated. In this instance it doesn't matter as the benchmark row will never be used or relevant. However, what if one of the other figures was in this instance an 8 or was the same as the benchmark. In this task I would need it to return a 1.

Also, if the benchmark less 10% is the same as a figure, it would need to return 0.

Are these going to be possible?
 
Upvote 0
if benchmark is 8 then 8.1 scores 2

it is up to you to define whether a score of exactly 8 is a 1 or a 2
say A1 = benchmark = 8 and B1 is the score = 8 and you want 8 to score 2

=if(B1>=A1, 2, if..............code to detect if between 7.2 and 7.999
 
Upvote 0
Forgive my ignorance, but how would I amend the below formula to also include a score of "1" if B2 = B25?

The formula is in the "reason for editing" on this post. It isn't showing properly when i paste it into the forum post.
 
Last edited:
Upvote 0
I can't get the formula to show properly - it keeps cutting it short...

I've put it in the "reason for editing" on this post.
 
Last edited:
Upvote 0
=if(b25=b2,1,IF(B$25 < 0,IF(B2 > B$25,2,IF(B2 < B$25*1.1,0,1)),IF(B2 > =B$25,2,IF(B2 < B$25*0.9,0,1))))
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top