Author Topic: IF with && || conditions  (Read 1340 times)

Tags:
  • Nerd
  • Élite
  • Posts: 462
  • Gender: Male
  • I think I could be on to something here!
*
IF with && || conditions
« on: 06 Aug 2014, 09:52 »
I really like the "IF" conditions and hope we can get it extended.

I've done some crazy stuff .. multiple nested IF's

IF(r_1_back_price < 1.5, lay_price * 0.9, IF(r_1_back_price < 1.85, lay_price * 0.8,IF(r_1_back_price < 2.25, lay_price * 0.7, IF(r_1_back_price < 3, lay_price * 0.75, lay_price * 0.6))))


I would like and (&&), or (||) added.

IF( a > b && d < c, true, false)
IF( a > b || d < c, true, false)
Fortune favors the brave!

  • Tim Vetrov
  • Administrator
  • Posts: 4875
  • Gender: Male
*
Re: IF with && || conditions
« Reply #1 on: 06 Aug 2014, 10:59 »
IF(AND(a>b,d<c), true, false)
IF(OR(a>b,d<c), true, false)
Proud to be 🇺🇦
I'm happy to help Monday - Friday, 08:00-18:00 GMT
Буду рад помочь с понедельника по пятницу, 08:00-18:00 GMT

 

Please note, BetFair is seems to be currently OFFLINE