Hello everyone,
I am trying to get my formula to recognize numbers >= $0.00 in all of the columns listed:
Hello everyone,
I am trying to get my formula to recognize numbers >= $0.00 in all of the columns listed:
In Airtable formulas, a numeric value of zero is a "falsy" value, and thus you cannot check for the presence of a value in a numeric field with only the field name. Instead, convert the value to a text string to test if there is a value.
IF(
{August FY25 Projections} & "",
{August FY25 Projections},
IF(
{FY Start Split Formula} & "",
{FY Start Split Formula},
{Original FY25 Revenue Projections}
))
In Airtable formulas, a numeric value of zero is a "falsy" value, and thus you cannot check for the presence of a value in a numeric field with only the field name. Instead, convert the value to a text string to test if there is a value.
IF(
{August FY25 Projections} & "",
{August FY25 Projections},
IF(
{FY Start Split Formula} & "",
{FY Start Split Formula},
{Original FY25 Revenue Projections}
))
This worked. Thank you so much!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.