Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Nick Thissen
on
For each Data Trigger, all conditions must be true at the same time for it to trigger.

In your first image, you trigger when the driverid is 361000 AND 335074 at the same time. That's obviously never true because a driver only has one id.
Second image you only check for one id, so that works.
Third image you check if the id is not either one of two numbers, which will trigger if the id is any other number except those two.


Basically multiple conditions in one trigger is an "AND" relationship (condition 1 AND condition 2 AND condition 3 must all be true). If you want OR relationship (condition 1 OR condition 2) you need two make two separate Data Trigger objects, one with condition1 and the other with condition2.