• 83 views | 2 messages Discussion: LEAP
    Topic: intervalSubscribe | Previous | Next
  • Palidan Aini 10/20/2019

    Dear friends:
    how are u ?I would like to know how to use this function in the expression :30<=x<=55,x is maybe the fixed cost,and is varying between this interval.
    thanks a lot!

  • Emily Ghosh 10/21/2019
      Best Response

    Hi Palidan,

    You could use the IF and AND statements in your expression. For example,

    If((x>=30) and (x<=55), 0,1)

    For more information on the IF statement, refer to the following help page:

    Thanks,
    Emily