I have these two fields

Formula on Contract Yield % is this:
I need to replace the formula in the Contract Yield, to an IF formula.
More likely:
I already tried (IF({Contract Yield}=0,{Appraised Yield}
but it's not showing the correct results

I have these two fields

Formula on Contract Yield % is this:

Best answer by kuovonne
Airtable stores percents as decimals. Try comparing with 0.01 instead of 1:
IF(
{Contract Yield} > 0.01,
{Contract Yield},
{Appraised Yield}
)
Or maybe try this (depending on the result you want when {Contract Yield} is between 0 and 1%:
IF(
{Contract Yield} = 0,
{Appraised Yield},
{Contract Yield}
)
In either case, I think you should keep a two field system: one that just calculate the {Contract Yield} and another that determines which of the two yields to actually use. It is possible to put it all in one formula, but it gets to be a long, ugly formula that is harder to maintain.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.