I'm trying to simply have this nested "IF" formula yield results which just refer to values in other cells, but so far it's only yielding "FALSE".
Here is my formula so far:
B2=IF(E2<0.5,A2,IF(0.5<E2<0.7,A3,IF(0.7<E2<0.9,A4,IF(0.9<E2<1,A5))))
My goal is to yield a number, in let's say B2, that is simply copied from any one of four other cells. Now, out of those four cells which CAN be used, the one which I WANT to use is the one that meets the criteria above. So, for example, if the value of "E2" is more than .5 and also less than .7, then I want "B2" to return the value from cell "A3". If "E2" is less than .5, then I want "B2" to return the value of "A2".
But my formula apparently isn't working, it just says "FALSE"
HELP???
Bookmarks