Reputation: 23
CONTEXT
If SUBMITTED FOR is full, CUSTOMER EMAIL should have SUBMITTED FOR EMAIL.
If SUBMITTED FOR is empty, CUSTOMER EMAIL should have CREATED BY EMAIL.
FLOW
PART 1 (Works fine)
FLOW PART 2 (Problem)
"Has Column Changed: Submitted for" IS EQUAL TO "Has Column Changed: Submitted for"
Also Tried
"Has Column Changed: Submitted for" IS EQUAL TO fx: TRUE
Boolean:::
YES
NO
The FLOW TEST says it works, but when FALSE, doesn't execute the NO "UPDATE ITEM".
Please help!
Upvotes: 0
Views: 1285
Reputation: 23
Found the problem:
In 2nd condition, was using "Has Column Changed:Submitted For" IS EQUAL TO fx:NULL.
But the value IS updated, even if the value is null, which produces a false positive.
Changed it to: "Submitted for" IS EQUAL TO fx:NULL.
My ignorance on difference between "Has changed" vs is the cell empty or not?
Upvotes: 1