QuickSheet extension that converts cron expressions to human-readable descriptions.
Type the cronck: prefix followed by a standard 5-field cron expression in any QuickSheet cell. The human-readable description appears in the cell to the right.
Exact cell text (copy-paste these into QuickSheet):
| Cell text | Output (next column) |
|---|---|
cronck: */5 * * * * |
Every 5 minutes |
cronck: 30 2 * * 1-5 |
At 02:30, on Monday through Friday |
cronck: 0 9 1,15 * * |
At 09:00, on day 1, 15 |
cronck: 0 0 * * 0 |
Weekly on Sunday at midnight |
cronck: 0 */4 * * * |
At :00 every 4 hours |
cronck: 0 8 * * MON,WED |
At 08:00, on Monday, Wednesday |
Note: The prefix is
cronck:(with colon). The entire cron expression goes after the colon as a single space-separated string. Do not use commas to separate the cron fields — commas are only used within a field (e.g.1,15for day-of-month).
- Standard 5-field cron:
minute hour day-of-month month day-of-week - Named days (
MON,TUE, …) and months (JAN,FEB, …) - Ranges (
1-5), lists (1,3,5), steps (*/5,10-30/5) - Common presets detected:
* * * * *,0 0 * * *, etc. - Zero network, zero NuGet — pure .NET 9
ext: github:Deskworks/quicksheet-cronck
- QuickSheet
- .NET 9 SDK
MIT