HelpExcel1
New Member
- Joined
- Oct 2, 2013
- Messages
- 3
I am trying to do the following with a value in P7 to print text in an adjacent cell based on the value in P7.
I am trying to get the function to return as follows:
If P7 <.95 return LVL 8
If P7 <1.06, but >.95 return LVL 7
If P7 <1.20, but >1.06 return LVL 6
If P7 <2 but > 1.20 return LVL 5
If P7 >2 return LVL4
Here is what I wrote in excel:
IF(P7<0.95,"LVL8", IF(P7<1.06,"LVL7", IF(P7<1.20,"LVL6", IF(P7<2 "LVL5", "LVL4"))))
It returned an error in the function, but I cannot figure out exactly what I did wrong.
Thanks for the help.
I am trying to get the function to return as follows:
If P7 <.95 return LVL 8
If P7 <1.06, but >.95 return LVL 7
If P7 <1.20, but >1.06 return LVL 6
If P7 <2 but > 1.20 return LVL 5
If P7 >2 return LVL4
Here is what I wrote in excel:
IF(P7<0.95,"LVL8", IF(P7<1.06,"LVL7", IF(P7<1.20,"LVL6", IF(P7<2 "LVL5", "LVL4"))))
It returned an error in the function, but I cannot figure out exactly what I did wrong.
Thanks for the help.