Every Quarter (Jan, Apr, Jul, Oct)
Runs the job at midnight on the first day of each calendar quarter: January 1, April 1, July 1, and October 1. This is used for quarterly financial reports, tax preparation tasks, quarterly reviews, and any business process aligned with fiscal quarters.
0 0 1 1,4,7,10 * What is the cron expression for Every Quarter (Jan, Apr, Jul, Oct)?
The cron expression for Every Quarter (Jan, Apr, Jul, Oct) is 0 0 1 1,4,7,10 *. This five-field cron schedule uses the format minute, hour, day-of-month, month, and day-of-week. Runs the job at midnight on the first day of each calendar quarter: January 1, April 1, July 1, and October 1. This is used for quarterly financial reports, tax preparation tasks, quarterly reviews, and any business process aligned with fiscal quarters. Common use cases include quarterly financial reports and tax preparation tasks.
Field Breakdown
Example Next Run Times
- 1.
2026-07-01 00:00 - 2.
2026-10-01 00:00 - 3.
2027-01-01 00:00 - 4.
2027-04-01 00:00 - 5.
2027-07-01 00:00
Common Use Cases
- ✓ Quarterly financial reports
- ✓ Tax preparation tasks
- ✓ Quarterly business reviews
- ✓ License renewal checks
Frequently Asked Questions
What if my fiscal year does not start in January?
Adjust the month list to match your fiscal quarters. For a fiscal year starting in February, use 1,4,7,10 replaced with 2,5,8,11.
Can I use */3 for quarterly?
Yes, 0 0 1 */3 * runs every 3 months starting from January. However, the explicit list 1,4,7,10 is clearer about which months are targeted and avoids ambiguity.
How do I run at the end of each quarter instead?
Target the last day of March, June, September, and December. Use 0 0 28-31 3,6,9,12 * with a last-day-of-month check in your script.