I'm using an IF statement to assign a value to performance, ultimately to gather a Rank in points.
I'm using multiple criteria (about 6) and each has a point assigned based on their performance in that metric.
Issue: Some values in catagories are coming up blank. This is causing my formula to give them max points (example below: They would get "10" even though they were absent or had nothing in that column of data).
Objective: Add a calculation that will take into consideration the blank value and return "1".
Any suggestions? Below is the actual formula I'm using.
=IF(G3>=0.85,"10",IF(G3>=0.8,"9",IF(G3>=0.75,"8",IF(G3>=0.7,"7",IF(G3>=0.65,"6",IF(G3>=0.6,"5",IF(G3>=0.58,"4",IF(G3>=0.55,"3",IF(G3<0.54999,"1")))))))))
I'm using multiple criteria (about 6) and each has a point assigned based on their performance in that metric.
Issue: Some values in catagories are coming up blank. This is causing my formula to give them max points (example below: They would get "10" even though they were absent or had nothing in that column of data).
Objective: Add a calculation that will take into consideration the blank value and return "1".
Any suggestions? Below is the actual formula I'm using.
=IF(G3>=0.85,"10",IF(G3>=0.8,"9",IF(G3>=0.75,"8",IF(G3>=0.7,"7",IF(G3>=0.65,"6",IF(G3>=0.6,"5",IF(G3>=0.58,"4",IF(G3>=0.55,"3",IF(G3<0.54999,"1")))))))))