justadude
2019-07-30 11:46:33
I was wondering how I can exit rules earlier in BMT Pro. Sometimes I have to go through various if-statements in rules and set values according to those rules. However, not all values need to be set all the time.
For example I have 12 if-statements. If-statement 1 sets a value. If-statement 2 sets a value etc. When If-statement 1 is true I don't need to go through the rest of the if-statements so I want to skip them. How can I do that?
Steve-Bome Forum Moderator
2019-07-30 17:20:26
Hi,
Lets say if you ga=gb you want to set the value of gc and not go on any further
if ga==gb then gc=23
if ga==gb then exit rules execute outgoing actions
Other non executed statements here
Steve Caldwell
Bome Q and A Moderator and
Independent Bome Consultant/Specialist
bome@sniz.biz
justadude
2019-07-30 18:29:43
comment
Thank you for your fast reply. That makes things a bit more efficient for me.
Steve-Bome Forum Moderator
2019-07-30 18:39:57
comment