Hi I'm trying to implement a formula where I can say if 'B' is greater than or equal to 'A' but less than or equal to '10.0' then BET otherwise do nothing, but can't quite seem to figure it out. This is what I have so far but it isn't working, what would you change?
=IF(A1<=B1<=10.0, "LAY", "")
Basic excel question
-
- Posts: 9
- Joined: Mon May 25, 2009 10:11 am
Another way would be to enter:
=If(and(A1<=B1,B1<=10),"LAY","")
Hope this helps.
=If(and(A1<=B1,B1<=10),"LAY","")
Hope this helps.