Hi,
I would like to create an automation that checks if one field (number) becomes equal to another field’s value then it riggers something. Is that possible? I only see in the condition to input a value but not select another field
thanks a lot
Hi,
I would like to create an automation that checks if one field (number) becomes equal to another field’s value then it riggers something. Is that possible? I only see in the condition to input a value but not select another field
thanks a lot
Best answer by Justin_Barrett
@John_McGarvey is on the right track. That formula could be simplified a bit further, though. The result of an expression like {Field 1} = {Field 2} is a boolean value (True or False) which the IF() function uses to determine which other argument to evaluate and return. However, Airtable will display boolean values as a number (1 or 0). You can use that to your advantage here and drop the surrounding IF() function entirely, using this as your complete formula (with correct field names, of course):
{Field 1} = {Field 2}
That alone is sufficient to produce a 1/0 output and act as trigger for an automation as described.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.