Forum Discussion
adydent67
Oct 10, 2019Copper Contributor
Formula Required: Outside of a range (plus or minus)
I had this formula =IF(S3=R3,"Good",IF(ABS(S3-R3)<=20%,"Under","Over")) But I want to check the values are within an allowable range. So it's whether I can combine something like this to a single...
PascalKTeam
Oct 10, 2019Iron Contributor
This should work =IF(AND(A1-B1<0.2;A1-B1>-0.2);"GOOD";IF(A1-B1>=0.2;"OVER";"UNDER"))
PascalKTeam
Oct 10, 2019Iron Contributor
I've also attached my file