
Hi everyone! Seeking some help with this automated cloud flow. It's currently running 7 days a week, but I only want it to run Monday-Friday (1,2,3,4,5) and not during the weekend. Can somebody assist with how I should add a dayofweek function/condition so that it only replies during weekdays? Flow attached. Thanks in advance!
Hi @NewGuy313
To add condition for the flow to run only on weekdays, pls add a trigger condition.
Click on ellipses menu(...) & select "Settings" from sub menu:
Scroll down to the bottom of the pop up and add a trigger condition:
@and(greater(dayOfWeek(utcNow()), 0),less(dayOfWeek(utcNow()), 6))
Click Done to save the changes & re-test the flow.
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks