Hi,
I am trying to create a formula that accomplishes the following but am not quite sure how to set it up. Does anyone have any suggestions?
IF({FPL %} > 125% but < 300% = "Eligible")
Thanks!
Hi,
I am trying to create a formula that accomplishes the following but am not quite sure how to set it up. Does anyone have any suggestions?
IF({FPL %} > 125% but < 300% = "Eligible")
Thanks!
Hi Rachel! Assuming your FPL % field is a percentage, you can use this formula
IF(
AND(
({FPL}*100) >= 125,
({FPL}*100) <= 300
),
"Eligible"
)
Hi Rachel! Assuming your FPL % field is a percentage, you can use this formula
IF(
AND(
({FPL}*100) >= 125,
({FPL}*100) <= 300
),
"Eligible"
)
This worked. Thank you so much!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.