Hi all,
I need your help to fix a bug on my app. It’s an inventory app that has an action to create a PDF label file with a description, size, price, etc of an item. It works like this:
After pressing an action, Label column changes by +1
Then, a workflow with UPDATES_ONLY update event runs a task that creates pdf. So far so good.
The workflow has a condition:
[_THISROW_BEFORE].[Label] <> [_THISROW_AFTER].[Label]
The problem is that this condition doesn’t work and the workflow runs a task every single time an update is made in any row. Therefore, it creates a pdf file every time someone changes quantity, description, image, etc.
How to fix the workflow so that a PDF is created only after an update in Label column and not anywhere else?