The Airtable Community will undergo scheduled maintenance on September 17 from 10:00 PM PST to 11:15 PM PST. During this period, you may experience temporary disruptions. We apologize for any inconvenience and appreciate your understanding.
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!