This will be a sceduled flow that runs every 15 minutes
How would i accomplish this?
Solved! Go to Solution.
Hi,
You can create a Scheduled Cloud Flow where you can set your 15 minute time interval. And in the settings you can use trigger condition that would only allow the flow to run between your required time. This is the challenging part. You can find the Trigger Condition in this post by Expiscornovus.
Hi,
You can create a Scheduled Cloud Flow where you can set your 15 minute time interval. And in the settings you can use trigger condition that would only allow the flow to run between your required time. This is the challenging part. You can find the Trigger Condition in this post by Expiscornovus.
Hi @fs,
Have you solved your problem?
Do you want to trigger the flow only from 8am and 5pm local time?
Write this expression within the condition of the trigger:
@and(
GreaterOrequals(
convertTimeZone(utcnow(), 'UTC', 'Central Standard Time', 'HH:mm'),//Here is your local time
formatdatetime('8:00','HH:mm')
),
lessOrEquals(
convertTimeZone(utcnow(), 'UTC', 'Central Standard Time', 'HH:mm'),
formatdatetime('17:00','HH:mm')
)
)
If you want to do that for more then just one flow (e.g. a whole environment) you can also use something like this.
Don't forget to create a second flow to turn on your flows again and include a condition so you don't turn off the "Turn it on again" flow 🙂
Ideally it would support daylight savings, but UTC is almost good enough thanks.
User | Count |
---|---|
103 | |
36 | |
29 | |
25 | |
16 |
User | Count |
---|---|
133 | |
54 | |
53 | |
36 | |
26 |