Anyone get this error in a Decision Step?
I first check to see if it is defined, but don’t know how to check for null?
I usually do {{[“Action - 1”].[step]}}="" to check for null/empty values
1 Like
thanks, I added that to my logic, I’ll have to wait until the next time this triggers to know for sure
For anyone interested, this worked
{{[“Action - 1”].[step]}} != null
no quotes around the null
2 Likes