Skip to main content
How do I configure a scheduled automation to run hourly between 5am and 6pm, every day?

Currently I have it running hourly continuously but I would like to free up the Engines outside of business hours.

Is this possible?

Thanks

This CRON expression will trigger on the hour every hour between 0500 and 1800

0 5-18 * * *

https://crontab.guru/#0_5-18_*_*_*

For the trigger in the Automation, use Schedule initiated and select CRON Expression

 

image 


Thanks for your response.

 

Unfortunately this expression doesn't work for me :

 

image


Thanks for your response.

 

Unfortunately this expression doesn't work for me :

 

image

Try this one:

0 0 5-18 ? * * *

 


Try this one:

0 0 5-18 ? * * *

 

This has been accepted.

Thankyou so much!


Reply