Help with workflow

hi, i have a workflow that is activated whenever something in my order is updated, in the function updates_only , but is there anyway i can set the workflow to activate only when a specific row is updated?, for example date. thanks,

Solved Solved
0 4 312
1 ACCEPTED SOLUTION

[_thisrow_before].[column] <> [_thisrow_after].[column]

That expression checks if [column] has changed. If thereโ€™s a chance that [column] is ever blank, you should also add a ISNOTBLANK() inside an AND() with the previous expression.

View solution in original post

4 REPLIES 4

Yes, there is a condition field in the workflow for just that, where you input a logical expression that returns true or false.

Thanks Marc, can you help me with the logical expression ? what im looking for is if the previous date changes.

[_thisrow_before].[column] <> [_thisrow_after].[column]

That expression checks if [column] has changed. If thereโ€™s a chance that [column] is ever blank, you should also add a ISNOTBLANK() inside an AND() with the previous expression.

thanks, i really appreciate your help

Top Labels in this Space