I'm having an issue with my nested if function. What I would ideally like to do is to compare 2 cells against a confidence interval percentage. So, if cell A is 5% higher than cell B I want my function to create a label the next cell as "Higher" and if its 10% higher than to be labeled as "Much Higher" and the same for 5% lower "Lower" and 10% lower "Much Lower" and if the values of both cells are the same the label to be "Same"
I have created a nested if function already....
=IF(D5<(C6*('Rating Legend'!$B$2*2)),"Much Lower",IF(D5<(C6-(C6*'Rating Legend'!$B$2)),"Lower",IF(D5>C6+(C6*'Rating Legend'!$B$2),"Higher",IF(D5>C6+(C6*('Rating Legend'!$B$2*2)),"Much Higher","Same"))))
*rating legend is on a separate worksheet where the confidence interval is located*
but can't seem to get the "much higher" portion to work properly. I have tried reversing the order but it still does not work properly...any feedback is welcome. Please!
I have created a nested if function already....
=IF(D5<(C6*('Rating Legend'!$B$2*2)),"Much Lower",IF(D5<(C6-(C6*'Rating Legend'!$B$2)),"Lower",IF(D5>C6+(C6*'Rating Legend'!$B$2),"Higher",IF(D5>C6+(C6*('Rating Legend'!$B$2*2)),"Much Higher","Same"))))
*rating legend is on a separate worksheet where the confidence interval is located*
but can't seem to get the "much higher" portion to work properly. I have tried reversing the order but it still does not work properly...any feedback is welcome. Please!