Author: Bill Woodger
Subject: Reply to: Need help in building a logic
Posted: Wed Feb 22, 2017 4:22 am (GMT 5.5)
Make the conditions mutually exclusive, you can only get (at most) a match on one condition.
Subject: Reply to: Need help in building a logic
Posted: Wed Feb 22, 2017 4:22 am (GMT 5.5)
Make the conditions mutually exclusive, you can only get (at most) a match on one condition.
Code: |
( condition 1 ) or ( ( condition 2 ) and ( not condition 1 ) ) or ( ( condition 3 ) and ( ( not condition 2 ) and ( not condition 1 ) ) ) |