Cron Three Times a Week (Mon, Wed, Fri at 9 AM)

Cron expression to run a job three times per week on Monday, Wednesday, and Friday at 9:00 AM: 0 9 * * 1,3,5.

0
Minute
9
Hour
*
Day (M)
*
Month
1,3,5
Weekday

At 09:00 AM, only on Monday, Wednesday, and Friday

Next execution dates

  • Fri, Jun 12, 2026, 09:00:00 AMin 21 hours
  • Mon, Jun 15, 2026, 09:00:00 AMin 4 days
  • Wed, Jun 17, 2026, 09:00:00 AMin 6 days
  • Fri, Jun 19, 2026, 09:00:00 AMin 8 days
  • Mon, Jun 22, 2026, 09:00:00 AMin 11 days

Visual builder

Pick how often the job should run. The expression updates automatically.

At:

How cron syntax works

A standard cron expression has five fields, separated by spaces.

MinuteHourDay of monthMonthDay of week
0 - 590 - 231 - 311 - 120 - 6 (Sun-Sat)
*
Any value* * * * * — every minute
,
Value list separator0 9,17 * * * — at 9 AM and 5 PM
-
Range of values0 9-17 * * * — every hour 9 AM–5 PM
/
Step values*/15 * * * * — every 15 minutes
?
No specific value (Quartz)0 0 12 ? * MON
L
Last (day of month/week)0 0 L * ? — last day of month

Common cron expressions

Click any example to load and translate it.

When to use this schedule

Mon/Wed/Fri is the standard schedule for alternate-day tasks. Use for fitness tracking reminders, coding challenge deliveries, MWF class schedules, and jobs that need more than twice-weekly but not daily frequency.

Related cron schedules