Oct 05, 2023 07:38 PM
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!
Oct 05, 2023 08:16 PM
Hi Rachel! Assuming your FPL % field is a percentage, you can use this formula
IF(
AND(
({FPL}*100) >= 125,
({FPL}*100) <= 300
),
"Eligible"
)
Oct 06, 2023 06:36 AM
This worked. Thank you so much!