Greater than and less than
Closed
slim
-
Oct 1, 2015 at 09:14 PM
RayH Posts 122 Registration date Tuesday August 31, 2010 Status Contributor Last seen June 20, 2016 - Oct 1, 2015 at 10:03 PM
RayH Posts 122 Registration date Tuesday August 31, 2010 Status Contributor Last seen June 20, 2016 - Oct 1, 2015 at 10:03 PM
1 response
RayH
Posts
122
Registration date
Tuesday August 31, 2010
Status
Contributor
Last seen
June 20, 2016
26
Oct 1, 2015 at 10:03 PM
Oct 1, 2015 at 10:03 PM
You cannot put the result, "Centimeters", in the same cell as the source.
The formula must go in another cell.
Either of these will do what you want:
The "" can be replaced with another value if the criteria is not met.
e.g.
=IF(AND(A4>1,A4<100),"Centimeters","NOT Centimeters")
or
=IF(A4>1,IF(A4<100,"Centimeters",">100"),"<1")
The formula must go in another cell.
Either of these will do what you want:
=IF(AND(A4>1,A4<100),"Centimeters","") =IF(A4>1,IF(A4<100,"Centimeters",""),"")
The "" can be replaced with another value if the criteria is not met.
e.g.
=IF(AND(A4>1,A4<100),"Centimeters","NOT Centimeters")
or
=IF(A4>1,IF(A4<100,"Centimeters",">100"),"<1")