Hi there,
I’m using airtable to compare an actual quantity with a goal quantity, then using an If, Then statement to tell me whether I’m at my goal, need to increase, or need to decrease my actual.
Here’s my current formula:
IF({% of total}={Goal % of total}, "OK",
IF({% of total}>{Goal % of total}, "Trim",
"Expand"))
This is working fine, but what I would really like is if I were able to specify a range for values that are “close enough” to the goal. For example if {% of total} is plus or minus 0.5 of the goal, I want it to return OK. Anyone have any thoughts on how to do this?
Thanks in advance!