Skip to main content

Formula to return "eligible" if percentage of FPL is between 125% and 300%

  • October 6, 2023
  • 2 replies
  • 33 views

Forum|alt.badge.img+4

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!

This topic has been closed for replies.

2 replies

Josh_Colina
Forum|alt.badge.img+12
  • Inspiring
  • October 6, 2023

Hi Rachel! Assuming your FPL % field is a percentage, you can use this formula

IF( AND( ({FPL}*100) >= 125, ({FPL}*100) <= 300 ), "Eligible" )

 


Forum|alt.badge.img+3
  • New Participant
  • October 6, 2023

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!