Please share the Cron expression for first day of every quarter at 11 AM to schedule the bot
For example
|Q1|January 1
|Q2|April 1
|Q3|July 1
|Q4|October 1
Please share the Cron expression for first day of every quarter at 11 AM to schedule the bot
For example
|Q1|January 1
|Q2|April 1
|Q3|July 1
|Q4|October 1
Try this: 0 11 1 1,4,7,10 *
Try this way,
It will run At 11:00 AM, on day 1 of the month, only in January, April, July, and October
Cron Expression → 0 0 11 1 1,4,7,10 * *
Regards,
Gowtham K
Hi @Sathish_Kumar_S , you can easily generate your cron expressions using this site: cronmaker.com
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.