Automation "Update Only" isn't being triggered

Hello fellow friends,

I have an issue with automation whereby many Change Bots are being fired during an "update" event however the bot that is supposed to capture the event and matches it is not being triggered. Here is the supporting snapshots.

This is the Event condition:

And([_THISROW_BEFORE].[Issue Payment Link] <> [_THISROW_AFTER].[Issue Payment Link],
[Issue Payment Link]=True)

Screenshot 2023-08-28 at 5.37.38 PM.pngScreenshot 2023-08-28 at 5.41.49 PM.pngScreenshot 2023-08-28 at 5.41.28 PM.png

0 1 56
1 REPLY 1

Wenn es sich bei dem [Issue Payment Link] um eine numerische Spalte handelt, z. B. Zahl, Preis oder Dezimalzahl probiere:

UND( [_thisrow_before].[ Zahlungslink ausstellen]<>[_thisrow_after]. [Zahlungslink ausgeben], [_thisrow_after].[ Link zur Zahlung ausgeben]<>0)

Wenn es sich bei dem [Issue Payment Link] um eine nicht numerische Spalte handelt, z. B. Text usw. probiere:

UND( [_thisrow_before].[ Zahlungslink ausstellen]<>[_thisrow_after]. [Zahlungslink ausgeben], ISNOTBLANK([_thisrow_after].[ Zahlungslink ausstellen]))

Top Labels in this Space