Greater Than But Less Than Formula
Hi,
I cannot figure out how to create a greater than but less than formula. I feel as though it should be straightforward, but alas, I cannot get it.
If the amount entered in the Temperature column is between 40 and 140, enter 'alert' in Temperature Alert column.
=IF(And(Temperature@row=>40, Temperature@row=<140), "alert", "")
What am I missing?
Best Answer
-
Hey @Yvette Moreland
It's the order you have the equal and the less than, or greater than signs. The equal sign is always last.
=IF(And(Temperature@row>=40, Temperature@row<=140), "alert")
cheers
Answers
-
Hey @Yvette Moreland
It's the order you have the equal and the less than, or greater than signs. The equal sign is always last.
=IF(And(Temperature@row>=40, Temperature@row<=140), "alert")
cheers
-
That worked. Thank you so much.
Help Article Resources
Categories
Check out the Formula Handbook template!