How to set trigger for 18th of Every month

Hi Folks,

I want to set trigger for 18th of every month at 9am. How do i set it ?
I get only these options

Hi @Chetan_Wagh

Try this CRON expression

0 0 9 18 * ?

This expression represents the following schedule:

  • 0 seconds
  • 0 minutes
  • 9 AM
  • 18th day of the month
  • Any month
  • Any day of the week

I hope it helps!!

@Chetan_Wagh

0 0 9 18 1/1 ? *

Hi @Chetan_Wagh
Try this CRON expression

0 0 9 18 * ?
or 0 0 9 18 * ? *
This expression represents the following schedule:

  • 0 seconds
  • 0 minutes
  • 9 AM
  • 18th day of the month
  • Any month
  • Any day of the week

I hope it helps!!

1 Like

@Chetan_Wagh

Go to advanced and give the CRON expression in below the time zone.
Ex:0 9 18 * *
cron expression for every month 18th 9am

1 Like

9am would be of the selected time zone, not necessarily IST . Correct ?

@Chetan_Wagh

Yes, it would be selected time zone.

1 Like

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