Bit Integrations-Conditional Logic
Operator Conditions
Equal: Checks whether the selected field is equal to the set value.
Example: suppose, If the first name of the Form/Task field is Equal to "Bitcode," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Not Equal: Checks if the selected field is not equal to the set value.
Example: suppose, If the first name of the Form/Task field is Not Equal "Bitcode," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Is Null: Checks whether the selected field is empty.
Example: suppose, If the first name of the Form/Task field Is Null, the data will be sent to your chosen action app. Otherwise, it will not be sent.
Is Not Null: Checks if the selected field is not empty.
Example: suppose, If the first name of the Form/Task field Is Not Null, the data will be sent to your chosen action app. Otherwise, it will not be sent.
Contain: Checks whether there is a value in the condition of the selected field.
Example: suppose, If the first name of the Form/Task field Contains "Bitcode," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Not Contain: Checks whether the condition of the selected field does not contain a value.
Example: suppose, If the first name of the Form/Task field Not Contain "Bitcode," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Start With: Checks whether the selected field starts with a given value.
Example: suppose, If the first name of the Form/Task field Start With "S, D, R, T, B, J, L, P," etc., the data will be sent to your chosen action app. Otherwise, it will not be sent.
End With: Checks whether the selected field ends with a given value.
Example: suppose, If the first name of the Form/Task field End With "w c,n,g, a,o, r," etc., the data will be sent to your chosen action app. Otherwise, it will not be sent.
Greater Than (Number): Checks whether a number is Greater Than the given value.
Example: suppose, If the Number field of the Form/Task field is Greater Than "10," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Less Than (Number): Checks whether a number is less than the given value.
Example: If the Number field of the Form/Task field is Less Than "10," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Greater Than or Equal (Number): Checks whether a number is greater or equal to the given value.
Example: suppose, If the Number field of the Form/Task field is Greater Than or Equal "10," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Less Than or Equal (Number): Checks whether a number is less than or equal to the given value.
Example: suppose, If the Number field of the Form/Task field is Less Than or Equal "10," the data will be sent to your chosen action app. Otherwise, it will not be sent.
Note:
Greater Than
,Less Than
,Greater Than or Equal
,Less Than or Equal
, these conditions only work with the number field.
Logical Conditions
Or Condition: Or Condition enables you to set multiple possible conditions. If Any condition is evaluated correctly, then subsequent and previous conditions are not considered. Because the evaluation of any one of the conditions is true, the condition will work. And it depends on how you set up your rules.
Example: Suppose, If the first name of the Form/Task field is Equal to "Wayes" Or Age Greater Than "18" Or Country Equal to "Bangladesh" Or city Equal to "Rajshahi." If any of these conditions match, then the data will be sent to your chosen action app. Otherwise, it will not be sent.
And Condition: The purpose of AND logic is to require two or more conditions that users must meet simultaneously.
Example: Suppose, If the first name of the Form/Task field is Equal to "Bitcode," And Last Name is Equal to "Technology," And City Equal to "Rajshahi." If these conditions are met, then the data will be sent to your chosen action app. Otherwise, it will not be sent.