What is the CRON expression for every working day(Mon-Fri) 11:15 AM and 2:25 PM excluding holidays

Hi Community,

I’m new to CRON expressions.
I would like to know what is the expression for every working day(Mon-Fri) 11:15 AM and 2:25 PM excluding Weekends(Sat-Sun).

Any help would be appreciated.
Thanks in Advance :slight_smile:

@Vaishnav_Tej

Please check this

15 11 * * 1-5

25 14 * * 1-5

Cheers

I have to write all this in single line ?

@Vaishnav_Tej

These are two expressions…For two different times you need two expressions

cheers

Expression is invalid
image

@Vaishnav_Tej

Can you try this please

0 15 11 ? * MON,TUE,WED,THU,FRI *

0 25 14 ? * MON,TUE,WED,THU,FRI *

cheers

Okay this is working .

If I understood correctly , The Trigger Name must be unique but the Process Name is same if I want to run n times in a day ?

@Vaishnav_Tej

If you want to create multiple triggers then give different names in triggers and yes process name will be same if you are creating trigger for same

cheers

1 Like

Can you send best website link to learn CRON expressions.

Try with this @Vaishnav_Tej

Regards
Gokul

1 Like

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