Greetings,
I could certainly use some expert help with this formula. I am trying to accomplish the following:
If Cell H7 < 0, then put in "q"
If Cell H7 is greater than 0 and less than 1, put in "u"
If Cell H7 is greater than 1 and less than 5, put in "{"
If Cell H7 is greater than 5, put in "p"
What I came up with:
IF(H7<0,"q",IF(H7>0,AND(H7<1,"u",IF(H7>1,AND(H7<5,"{","p")))))e
The error I am getting indicates there is something wrong with the third IF statement. Any help would be greatly appreciated!
I could certainly use some expert help with this formula. I am trying to accomplish the following:
If Cell H7 < 0, then put in "q"
If Cell H7 is greater than 0 and less than 1, put in "u"
If Cell H7 is greater than 1 and less than 5, put in "{"
If Cell H7 is greater than 5, put in "p"
What I came up with:
IF(H7<0,"q",IF(H7>0,AND(H7<1,"u",IF(H7>1,AND(H7<5,"{","p")))))e
The error I am getting indicates there is something wrong with the third IF statement. Any help would be greatly appreciated!