Personally, I always end up using this CRON generator, since I end up forgetting the syntax between uses: https://www.freeformatter.com/cron-expression-generator-quartz.html
Which would give you:
0 0 7 ? * MON,TUE,WED,THU,FRI,SAT *
Yes, that worked. Thank you.
Personally, I always end up using this CRON generator, since I end up forgetting the syntax between uses: https://www.freeformatter.com/cron-expression-generator-quartz.html
Which would give you:
0 0 7 ? * MON,TUE,WED,THU,FRI,SAT *
Most Google guidance I found suggested five fields:
· minute of the hour (0-59), or leave as *
· the hour (0-23), or leave as *
· day of the month (1-31), or leave as *
· month (1-12), or leave as *
· day of the week (0-6 where 0 or 7 is Sunday), or leave as *
Thus my effort of 0 7 * * 1-6
I didn’t realise Flow wanted it’s cron expressions to be a bit more expanded that that.
Thanks,