I have a logcal test in an excel if statement that I don't understand, this is a nested if, which I understand completely, my trouble is with the last logical test:
..................
What does this do? Does it test if 1.16 is greater than the value in B32 and then test if B32 is greater than the value in E38?
This is the entire statement:
Help will be greatly appreciated.
Code:
IF(1.16 > B32 > E38
What does this do? Does it test if 1.16 is greater than the value in B32 and then test if B32 is greater than the value in E38?
This is the entire statement:
Code:
=IF(B32<=1,1,IF(B32>1.15,E38,IF(1.16>B32>E38,E37,0)))
Help will be greatly appreciated.