CRON Expression for Time based Trigger

Hey Forum,

I need one help with triggering a bot that is:
IT Should trigger a bot every 3 hour from Monday to Friday starting from 9AM to 6PM

Hi @Akshaya89
You can try this cron expression:
0 9-18/3 * * 1-5

Regards,

1 Like

Hi @Akshaya89

0 0 9-18/3 ? * MON-FRI *

Here’s a breakdown of the expression:

  • 0 0: At the start of the hour.
  • 9-18/3: Every 3 hours between 9 AM and 6 PM.
  • ?: No specific day of the month.
  • *: Every month.
  • MON-FRI: Only on weekdays (Monday to Friday).

This will ensure your bot runs at 9 AM, 12 PM, 3 PM, and 6 PM from Monday to Friday.

1 Like

Hi try th below crone expression

0 0 9-18/3 ? * MON-FRI *

1 Like

Thank you all
It helped me

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.