Ok i've got a massive workbook with sales data and the purpose is to create a "report" card for all of the salepeople in various categories to show strengths and areas to improve upon. Since I've assumed this project I've decided to automate as much as is practical since this is run frequently.
Everything is good except for the Gross Profit where there is a sticky weighting system as follows
Quota less Actual = X
0.0% = 10
-0.2% = 9
-0.4% = 8
-0.6% = 7
-0.8% = 6
-1.0% = 5
-1.2% = 4
-1.4% = 3
-1.6% = 2
-1.8% = 1
-2.0% = 0
So I've tried the following if statement but and I can't seem to get it right
=IF(E4>=0,"10",IF(E4>=-0.002,"9",IF(E4<=-0.004,"8",IF(E4<=-0.006,"7",IF(E4<=-0.008,"6",IF(E4<=-0.01,"5",IF(E4<=-0.012,"4",IF(E4<=-0.014,"3",IF(E4<=-0.016,"2",IF(E4<=-0.018,"1","0"))))))))))
Any help would be greatly appreciated I've beat my head against a wall for three days now.
Bookmarks