Stop bot from running if execution was less than 2 min ago

I'm trying to stop this bot from running, if the [Updated] field is less than 2 minutes ago.

I have this expression in Condition:

and(
[Deleted]=false
,
minute(now()-[Updated]) >= 2
)

What am I doing wrong?

This bot is generating a pdf each time, so I want to minimize the run times.

Solved Solved
0 3 72
1 ACCEPTED SOLUTION

I did a quick test and your expression does exactly what you intend. (bot runs on change events)

How is your bot set up? Trigger on change events? scheduled?

View solution in original post

3 REPLIES 3

I did a quick test and your expression does exactly what you intend. (bot runs on change events)

How is your bot set up? Trigger on change events? scheduled?

On adds and updates.

I wonder if the [Updated] (Timestamp on change) field get an update after each change   *?

I have a referenced table where there was also a bot that was forgotten. 

So now everything works. 

Thank you!

Top Labels in this Space