Hello,
Is there a solution to stop a bot from being triggered for 5 days after its been triggered once?
I do not think there is a ready way to do this.
You could create a column somewhere that records when the bot is executed and then based on the date, you can set a condition in your bot's event trigger.
May we know how you are currently triggering the BOT?
Hello,
The bot is currently being triggered when a question is answered with "YES".
It's definitely possible.
@TeeSee1 and @Steve have already given a definitive useful guidance.
You may create a "ChangeTimeStamp" type column called say [Elapsed5Days] that tracks the changes in [Question] column and changes timestamp when the [Question] is answered "Yes"
Then your BOT trigger condition can be something like
AND(DATE([_THISROW_BEFORE].[Elapsed5Days])<= (DATE([_THISROW_AFTER].[Elapsed5Days])-5), [Question])
Assumes [Question] is Y/N type column and you have mechanism to reset it before next trigger cycle of the BOT.
https://help.appsheet.com/en/articles/961638-tracking-changes-using-change-column-types
The article below has description of _THISROW_BEFORE and _AFTER values
User | Count |
---|---|
16 | |
11 | |
9 | |
8 | |
4 |