Hi,
I have written two IFTTT integration rules on modification of a record. The condition is as follows:
1.
hasChanged(RequestStatus):true AND (RequestStatus:40 OR RequestStatus:50) and DataBricksEnvironment:20
2.
hasChanged(RequestStatus):true AND (RequestStatus:40 OR RequestStatus:50) and DataBricksEnvironment:10
However, the first one is getting triggered even though DataBricksEnvironment is 10. Am i not writing the logic correctly?
Try rewriting your filtering expressions this way (important to follow case sensitivity as well)
(hasChanged(RequestStatus):true AND DataBricksEnvironment:20) AND (RequestStatus:40 OR RequestStatus:50)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.