ukbulldog001
New Member
- Joined
- Jul 8, 2015
- Messages
- 26
- Office Version
- 2016
- Platform
- Windows
Dear MrExcelits,
Need help in deriving Grade A to E using two sets of data.
Tried my best and stuck.
Please help in formula.
No macros please as I would share this file.
Example as below:
Grade Table to consider:
Values to be considered for the Grade:
Result:
I have used the above formula but it doesn't work as expected.
Here if Quality=1101 and Delivery=96 then the Grade should be "D".
And if Quality=470 and Delivery=93 then the Grade should be "C".
Thanks in advance.
Need help in deriving Grade A to E using two sets of data.
Tried my best and stuck.
Please help in formula.
No macros please as I would share this file.
Example as below:
Grade Table to consider:
Book1 | |||||
---|---|---|---|---|---|
B | C | D | |||
2 | GRADE | QUALITY | DELIVERY % | ||
3 | A | 1-500 | 98-100 | ||
4 | B | 501-750 | 95-97 | ||
5 | C | 751-1000 | 92-94 | ||
6 | D | 1001-1300 | 90-91 | ||
7 | E | >1300 | 85-89 | ||
Sheet1 |
Values to be considered for the Grade:
Book1 | ||||
---|---|---|---|---|
F | G | |||
3 | QUALITY | 636 | ||
4 | DELIVERY | 96 | ||
Sheet1 |
Result:
Book1 | |||
---|---|---|---|
I | |||
3 | GRADE | ||
4 | B | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
I4 | =IF(OR(G3<500,G4>=98),"A",IF(OR(G3<750,G3>500,G4>=95,G4<98),"B",IF(OR(G3<1000,G3>750,G4>=92,G4<95),"C",IF(OR(G3<1300,G3>1000,G4>=90,G4<92),"D",IF(OR(G3>1300,G4<85),"E",""))))) |
I have used the above formula but it doesn't work as expected.
Here if Quality=1101 and Delivery=96 then the Grade should be "D".
And if Quality=470 and Delivery=93 then the Grade should be "C".
Thanks in advance.