Forum Discussion
JB_The_RV_Guy
Mar 01, 2019Copper Contributor
if then formula help
Can anyone help me with a formula - here is my formula I am looking for..... If G41 is >90 but <120 then H37 = 2
I appreciate any assistance :)
Hi,
You need to use IF function along with AND as follows:
=IF(AND(G41>90,G41<120),2,0)
Hope that helps
- Haytham AmairahSilver Contributor
Hi,
You need to use IF function along with AND as follows:
=IF(AND(G41>90,G41<120),2,0)
Hope that helps
- JB_The_RV_GuyCopper Contributor
Thank you Sir, That did it!!!
Any chance you could help with another that is similar?
here is the formula I am looking for:
IF G41 IS >90 BUT <120 = $200 OR IF G41 IS >121 BUT <180 = $300 OR IF G41 IS >181 = $500
I so appreciate your help!
- TwifooSilver ContributorWhat if G41 >=120 and <=121?
Also, what if G41>=180 and <=181?