Automation Bot, trigger once for entire row

We currently have bot, that handles changes to a certain row. However, we need the changes to trigger the bot only once, when the changes have been applied and not sequentially. Is there a way to do this?

 

Basically if column A of row 1 is changed and shortly after, column B of row 1 is changed, the bot should trigger the event only once.

 

The bot then sends a http request to a web hook.

0 2 97
2 REPLIES 2

Unless you can specify the condition to trigger the bot using before/after values, or whatever logic you can write,  I think you need to have a column to track if a trigger has been applied to that particular row or not...

Steve
Platinum 4
Platinum 4

You could add a column of type ChangeCounter that will automatically increment every time the row is updated. If the counter is 1, this is the first update. If the count is greater than 1, it's not the first update.

Top Labels in this Space