function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rahul Singh 1384Rahul Singh 1384 

Cron Expression to schedule with Day Interval on WeekDays only(Monday to Friday).

Hi all,

Cron Expression to schedule on WeekDays only(Monday to Friday).
An example like which will run from 7-July-2018 to 15-July-2019 after every 2 Days on Weekdays(Monday to Friday) only at 12 AM.

Any help would be highly appreciated.
SandhyaSandhya (Salesforce Developers) 
Hi,

Try the below one.
 
0 0 12 ? * MON-FRI *

http://www.cronmaker.com/
 
Please mark it as solved if my reply was helpful. It will make it available for other as the proper solution.
                                             
Best Regards
Sandhya
 
 
Rahul Singh 1384Rahul Singh 1384

Hi Sandhya,

Thanks for reply,

Can you please make the Cron: which will Schdule the job every 4 days at 12:00 AM on weekdays only, which will not count saturday and sunday.
Thanks in advance.