Excel Practice Test

โ–ถ

Learning how to put a date in Excel is one of the most fundamental skills any spreadsheet user must master, yet it is also one of the most misunderstood. Dates in Excel are not just text strings sitting in a cell; they are serial numbers that the application interprets as calendar values, which means a tiny formatting mistake can cascade into broken formulas, sorting errors, or pivot tables that refuse to group by month. Whether you are tracking invoices, building project timelines, or just logging when a task was completed, you need to enter dates correctly.

Excel offers more than a dozen ways to insert a date into a worksheet, ranging from the lightning-fast Ctrl+; shortcut that stamps today's date as a static value, to the dynamic TODAY() and NOW() functions that refresh every time the workbook recalculates. There is also the powerful DATE() function for constructing dates from individual year, month, and day arguments, plus DATEVALUE() for converting text into proper date serials. Each method has a specific use case, and choosing the right one prevents headaches later.

This guide walks you through every reliable technique for date entry, from the simplest typed input like "5/21/2026" to the most advanced approaches involving VBA macros, Power Query, and dynamic arrays. We will also cover regional format issues that confuse many US users when they share workbooks with European colleagues, plus the keyboard shortcuts that experienced analysts use to save hours each week. By the end, you will know exactly which method to use for any situation.

Excel stores every date as a serial number counted from January 1, 1900, which is day 1 in the default system. So when you type 5/21/2026, Excel actually stores the number 46163 and applies a date format to display it as a calendar value. This dual nature is what allows you to subtract one date from another to get the number of days between them, or add 30 to a date to get the deadline 30 days later. Understanding this is the key to everything that follows.

Whether you are a beginner just learning vlookup excel and basic formulas, or a seasoned analyst building dashboards with how to create a drop down list in excel and dynamic ranges, mastering date entry will make your spreadsheets cleaner and more reliable. The methods in this guide work across Excel 2016, 2019, 2021, Microsoft 365, and Excel for the web, with notes where behavior differs between desktop and online versions.

We will start with the absolute basics โ€” typing a date manually and using keyboard shortcuts โ€” and progressively build toward more sophisticated automation. Along the way, you will pick up tips on how to merge cells in excel without losing date values, how to freeze a row in excel so your date headers stay visible while you scroll, and how to use conditional formatting to highlight overdue items automatically. By the end, you will have a complete date-handling toolkit.

Each section includes concrete examples, exact keystrokes, and real screenshots of what your spreadsheet should look like. Bookmark this page; you will refer back to it whenever a date format misbehaves or you need to remember the exact syntax for a function you use rarely. Let's start by exploring the building blocks of Excel's date system.

Excel Dates by the Numbers

๐Ÿ“…
1/1/1900
Serial Date #1
๐Ÿ”ข
2,958,465
Maximum Date Serial
โŒจ๏ธ
Ctrl+;
Today's Date Shortcut
โฑ๏ธ
Ctrl+Shift+;
Current Time Shortcut
๐ŸŒ
12+
Built-in Date Formats
Test Your Excel Date Skills with Free Practice Questions

How to Insert a Date in Excel: Step by Step

๐ŸŽฏ

Click the cell where the date should appear. For best results, choose a cell in a column reserved for dates so you can apply consistent formatting. Avoid merged cells, which can cause sorting and filtering problems later when working with date columns in larger datasets or pivot tables.

โŒจ๏ธ

Decide between static entry (Ctrl+; or typing the date manually) or dynamic entry (TODAY() or NOW() functions). Static dates remain fixed; dynamic dates refresh every time Excel recalculates. Pick based on whether you need a permanent record or a live snapshot of the current date.

๐Ÿ“

For manual entry, type the date as 5/21/2026 or May 21, 2026 โ€” Excel will auto-detect both. For shortcut entry, press Ctrl+; to stamp today's date. For function entry, type =TODAY() and press Enter. Excel converts your input to a serial number behind the scenes.

๐Ÿ”

Press Ctrl+1 to open Format Cells and confirm the category is set to Date, not Text or General. If the cell shows a number like 46163 instead of a calendar date, the format is wrong. Select a date format from the list, click OK, and the value will display correctly.

๐ŸŽจ

For specialized displays like "Thursday, May 21, 2026" or "2026-05-21", choose Custom in Format Cells and enter codes like dddd, mmmm dd, yyyy or yyyy-mm-dd. These codes work universally across Excel versions and produce consistent output regardless of regional settings on the viewer's computer.

๐Ÿงฎ

Confirm Excel recognizes your entry as a true date by entering =A1+30 in an adjacent cell, where A1 holds your date. If you get a date 30 days later, success. If you get an error or the number 30 appended as text, the original entry is text, not a date, and needs reformatting.

The fastest way to put a date in Excel is the keyboard shortcut Ctrl+; (Control plus semicolon), which inserts today's date as a static value into the active cell. This shortcut is invaluable for logging entries, timestamping decisions, or recording when data was entered, because the value never changes โ€” even if you open the workbook a year later, the original date remains intact. Pair it with Ctrl+Shift+; to add the current time in an adjacent cell, and you have a complete date-and-time stamp in two keystrokes flat.

For manual date entry, Excel accepts a remarkable range of formats and intelligently converts them. You can type 5/21/2026, 5-21-26, May 21 2026, 21-May, or even just 5/21 (Excel assumes the current year). The application parses your input, identifies it as a date, and stores the underlying serial number while displaying it according to the cell's current format. If you want to override US regional defaults, type ISO format like 2026-05-21 โ€” this is unambiguous and works correctly even when sharing files internationally with colleagues in different locales.

The DATE function is the most reliable way to construct a date from individual components, especially when those components live in separate cells or come from other calculations. The syntax is =DATE(year, month, day), so =DATE(2026, 5, 21) produces May 21, 2026. This function is bulletproof because it bypasses any regional ambiguity โ€” month is always the second argument, day is always the third, regardless of whether the user's computer is set to US or European format. It also handles invalid inputs gracefully by rolling them forward: =DATE(2026, 13, 1) returns January 1, 2027.

For dynamic dates that auto-update, use =TODAY() to get the current date with no time component, or =NOW() to get the current date and time together. Both functions recalculate whenever the workbook recalculates, which happens automatically on opening, when you press F9, or when any input cell changes. This makes them perfect for dashboards showing "Report Generated On:" headers, age calculations like =TODAY()-B2 to compute how old an invoice is, or countdown timers showing days until a deadline.

One trick many users miss is the autofill handle for dates. Type a date in one cell, grab the small square at the bottom-right corner of that cell, and drag down or across. Excel automatically increments the date by one day per cell, creating an instant date sequence. Right-click and drag instead of left-click and drag to get a menu offering options like Fill Months, Fill Years, Fill Weekdays, or Fill Series with a custom step value โ€” extremely useful for monthly reports or weekday-only project schedules.

If you need a date that points to a relative day like "the first Monday of next month" or "the last business day of this quarter," combine DATE with WEEKDAY and EOMONTH. For example, =EOMONTH(TODAY(),0) returns the last day of the current month, and =EOMONTH(TODAY(),0)-WEEKDAY(EOMONTH(TODAY(),0),11)+1 returns the last Monday of the current month. These formulas look intimidating at first but become routine once you understand the building blocks. Save your favorites as named ranges for easy reuse across workbooks.

Finally, remember that pasted dates from web pages or emails often come in as text rather than true dates. The giveaway is that text dates align left in the cell while real dates align right. To convert, use =DATEVALUE(A1) or the Text-to-Columns wizard with Date format selected on step three. After conversion, sorting, filtering, and arithmetic will all work correctly. This single fix solves about 80% of the date problems users encounter when importing external data.

FREE Excel Basic and Advance Questions and Answers
Test your knowledge of Excel basics including date entry, formatting, and core spreadsheet skills.
FREE Excel Formulas Questions and Answers
Practice formulas covering DATE, TODAY, NOW, EOMONTH, and other essential date functions.

Date Functions: TODAY, NOW, and DATE Explained

๐Ÿ“‹ TODAY Function

The TODAY function takes no arguments and returns the current system date as a serial number formatted as a date. Simply type =TODAY() into any cell and press Enter. The result updates automatically whenever the workbook recalculates, which means opening the file tomorrow will show tomorrow's date. This volatility makes TODAY perfect for dynamic headers, age calculations, and overdue indicators.

Common uses include calculating someone's age with =DATEDIF(B2,TODAY(),"Y"), counting days remaining until a deadline with =A2-TODAY(), or building a "Days Overdue" column with =MAX(0,TODAY()-DueDate). Because TODAY changes daily, do not use it when you need a permanent timestamp โ€” use Ctrl+; instead to lock in a static value that survives recalculation cycles.

๐Ÿ“‹ NOW Function

NOW returns the current date and time together as a single serial number. The integer portion represents the date and the decimal portion represents the time of day, where 0.5 equals noon and 0.25 equals 6:00 AM. Syntax is simply =NOW() with no arguments. Format the result with a custom code like mm/dd/yyyy hh:mm AM/PM to display both components clearly.

NOW is useful for last-refresh indicators on dashboards, time-stamped log entries, and elapsed-time calculations. To extract just the time portion, use =MOD(NOW(),1) which strips the date. To get just the date, use =INT(NOW()) which is functionally equivalent to TODAY. Like TODAY, NOW is volatile and recalculates with every workbook change, so it should never be used as a permanent record.

๐Ÿ“‹ DATE Function

The DATE function constructs a date from three numeric inputs: year, month, and day. Syntax is =DATE(year, month, day), so =DATE(2026, 5, 21) returns May 21, 2026. This function is the gold standard for building dates programmatically because it eliminates regional ambiguity โ€” the argument order is fixed regardless of the user's locale settings.

DATE shines when constructing dates from data spread across multiple cells, like =DATE(A2,B2,C2) where year, month, and day live in separate columns. It also handles overflow intelligently: =DATE(2026,2,30) returns March 2, 2026 because February has only 28 days that year. This rollover behavior makes DATE perfect for date arithmetic in financial models, project schedules, and recurring event calculations.

Static vs Dynamic Date Entry: Which Should You Use?

Pros

  • Static dates (Ctrl+;) create permanent timestamps that never change
  • Dynamic dates (TODAY/NOW) auto-refresh for live dashboards
  • DATE function eliminates regional format confusion entirely
  • Autofill handle creates date sequences instantly with drag
  • Custom format codes work consistently across all Excel versions
  • ISO format (yyyy-mm-dd) is unambiguous for international sharing
  • DATEVALUE converts pasted text dates back to real date serials

Cons

  • Volatile functions (TODAY/NOW) slow down large workbooks
  • Text-formatted dates break sorting, filtering, and arithmetic
  • Regional differences cause 5/6/2026 to mean different dates
  • Merged cells corrupt date columns and break pivot tables
  • Excel cannot store dates before January 1, 1900
  • Two-digit years like 21 may be interpreted incorrectly
  • Time zones are not handled natively โ€” Excel uses local system time
FREE Excel Functions Questions and Answers
Master DATE, TODAY, NOW, EOMONTH, WORKDAY, and dozens of other essential Excel functions.
FREE Excel MCQ Questions and Answers
Multiple-choice questions covering Excel fundamentals, date handling, and best practices.

Date Formatting Checklist for Every Excel Worksheet

Verify each date cell is formatted as Date, not General or Text
Use ISO format (yyyy-mm-dd) when sharing files internationally
Apply consistent format across an entire date column for clean sorting
Check that pasted dates display right-aligned, not left-aligned
Convert text dates to real dates using DATEVALUE or Text-to-Columns
Avoid two-digit years; always type four-digit years like 2026
Test arithmetic by adding 30 to a date โ€” should return a date
Replace TODAY() with Ctrl+; when you need permanent timestamps
Use named ranges for frequently-referenced dates like FiscalYearStart
Document your date logic in cell comments for future reviewers
Always use four-digit years

When you type 5/21/21, Excel interprets it as 2021 by default โ€” but the cutoff for two-digit years depends on regional settings and can vary. Eliminate all ambiguity by typing the full four-digit year every time. This single habit prevents 90% of date-related errors and makes your spreadsheets bulletproof against unexpected interpretation.

Regional date formatting is one of the most frustrating issues in Excel, especially for US users who share workbooks with colleagues in Europe, Asia, or Latin America. The same string "5/6/2026" means May 6th in the United States but June 5th in the United Kingdom, Germany, and most of the world. Excel reads incoming text dates based on the user's Windows regional settings, so a file that looks perfect on your computer may show garbled or transposed dates on a colleague's screen. The safest defense is to always use the ISO 8601 format yyyy-mm-dd, which has only one possible interpretation.

To check or change your regional settings on Windows, open Control Panel, navigate to Region, and look at the Short Date format. On macOS, go to System Settings, General, Language & Region, and inspect the Date Format preview. Excel inherits these system-level defaults when interpreting typed dates, so if you frequently work with international data, consider matching your regional settings to your most common collaborators. Alternatively, store all dates internally as ISO strings and apply display formats per worksheet.

Custom number format codes give you complete control over how dates appear without changing the underlying serial value. Press Ctrl+1 to open Format Cells, choose Custom, and enter codes like dd-mmm-yyyy for "21-May-2026" or dddd, mmmm d, yyyy for "Thursday, May 21, 2026." The letter codes are intuitive: d for day, m for month, y for year, with single letters showing minimum digits and repeated letters showing more detail. So mmm shows "May" while mmmm shows the full month name.

For weekday-only displays, use ddd for "Thu" or dddd for "Thursday." Combine codes to build elaborate formats like "Q"q" "yyyy for quarterly labels โ€” though note that Q is not a built-in code, so you would need a helper formula. A common business format is mmm-yy for compact monthly reports, producing "May-26." These formats apply only to display; the underlying value remains 46163, so all calculations continue to work normally regardless of how the date appears on screen.

When you copy and paste data between worksheets or workbooks, formats sometimes transfer and sometimes do not, depending on the paste mode. Paste Special with Values Only strips all formatting and keeps just the raw serial numbers, which then default to the destination's format. Paste Special with Formats transfers only the visual appearance without touching values. For safe round-trip transfers, paste values first then manually apply your preferred format to the destination cells โ€” this avoids surprise format inheritance.

Conditional formatting on dates lets you highlight overdue items, color-code upcoming deadlines, or flag weekends in red. Select your date range, go to Home, Conditional Formatting, New Rule, and choose "Use a formula to determine which cells to format." Enter a formula like =A2<TODAY() to highlight past dates, or =WEEKDAY(A2,2)>5 to highlight weekends. Pair with a fill color or font change in the Format dialog, click OK, and your visual cues update automatically as dates change or new entries arrive.

Finally, when sharing workbooks with users in different regions, consider locking critical date columns with Data Validation set to Date type. Go to Data, Data Validation, choose Date from the Allow dropdown, set min and max bounds, and add a custom error message explaining the expected format. This prevents users from typing invalid strings or numbers in date columns and reduces support requests dramatically. Combined with ISO formatting, validation creates a robust date entry experience that survives any regional handoff.

Once you have mastered basic date entry, the next level is automating date workflows with VBA macros, Power Query, and dynamic array functions. A simple macro to insert today's date into the active cell looks like this: Sub InsertToday() ActiveCell.Value = Date End Sub. Bind it to a keyboard shortcut via Developer, Macros, Options, and you can stamp dates with a single keystroke combination of your choosing. For NOW equivalent, replace Date with Now in the macro. These macros run instantly and store static values, not volatile functions.

Power Query, accessible via Data, Get & Transform, is the modern way to import date columns from CSV files, databases, or web sources while controlling the format at import time. In the Power Query Editor, right-click any date column and choose Change Type, Using Locale. This dialog lets you specify the source format explicitly โ€” say, English (United Kingdom) for British DMY data โ€” so Power Query interprets the values correctly regardless of your local Windows settings. The cleaned data lands in Excel as proper date serials ready for analysis.

Dynamic array functions introduced in Microsoft 365 make date sequences trivially easy. Type =SEQUENCE(30,1,TODAY()) into a cell and Excel spills 30 consecutive dates starting today across 30 rows. Combine with TEXT to format the output, or wrap in FILTER to exclude weekends: =FILTER(SEQUENCE(30,1,TODAY()), WEEKDAY(SEQUENCE(30,1,TODAY()),2)<6). These spill formulas update automatically as the source date changes, making them ideal for rolling forecasts and dynamic calendar views.

For project schedules, the WORKDAY function calculates business days while skipping weekends and optional holiday lists. Syntax is =WORKDAY(start_date, days, [holidays]), so =WORKDAY(TODAY(), 10, HolidayList) returns the date 10 business days from today, excluding any dates in the named range HolidayList. The companion NETWORKDAYS function counts business days between two dates the same way. These two functions handle 95% of project planning math without requiring complex custom formulas or VBA.

The EDATE and EOMONTH functions handle monthly date arithmetic intelligently. EDATE(start, months) returns the same day in a future or past month, so =EDATE("2026-01-31", 1) returns February 28, 2026 โ€” Excel automatically adjusts because February lacks a 31st. EOMONTH(start, months) returns the last day of the target month. Use these for invoice due dates, subscription renewals, and recurring billing schedules. They eliminate the brittle day-arithmetic that breaks at month boundaries.

For dropdown date pickers, combine Data Validation with a hidden helper column containing a list of valid dates. Create a column with =SEQUENCE(365,1,DATE(2026,1,1)) to generate all dates in 2026, name the range CalendarDates, then apply Data Validation, List, =CalendarDates to your input cell. Users see a dropdown showing valid dates and cannot type invalid entries. This pattern is invaluable for shared workbooks where date format discipline matters and you want to enforce consistency.

Finally, if you need timezone-aware dates, Excel does not handle them natively, but you can simulate timezone math by adding or subtracting hours as fractions: =NOW()-5/24 converts UTC to Eastern Standard Time. For more robust timezone handling, push the work to Power Query or a custom VBA function that calls the Windows API. Most business spreadsheets do not need this complexity, but international teams coordinating across regions benefit from explicit timezone columns alongside their date entries.

Master Excel Formulas with Free Practice Tests

Putting all of these techniques into practice starts with adopting a few simple habits that experienced Excel users follow without thinking. First, always reserve a dedicated column for dates and apply the same format to every cell in that column. Consistency makes sorting, filtering, and pivoting trivial. Avoid mixing dates and text in the same column, and never use merged cells in a date column โ€” merged cells break sorting and create gaps in pivot table groupings that are nearly impossible to debug later.

Second, when entering a date manually, default to typing it the same way every time. Choose either 5/21/2026 with slashes or 2026-05-21 with dashes and stick with it. Consistency in your typing pattern reduces the cognitive load of double-checking formats, and it makes your workflow faster over time. If you find yourself entering many dates in sequence, use the autofill handle to extend a pattern rather than typing each one โ€” it is both faster and less error-prone.

Third, leverage keyboard shortcuts aggressively. Ctrl+; for today's date, Ctrl+Shift+; for the current time, Ctrl+1 to open Format Cells, and Ctrl+Shift+# to apply the default date format. These four shortcuts will save you hours over a typical work month. If you build workbooks for others, document these shortcuts in a brief instructions tab so colleagues can adopt them too โ€” it pays back the time investment many times over in reduced support questions.

Fourth, validate before you trust. After importing dates from any external source โ€” a CSV file, a web table, an emailed report โ€” immediately test whether Excel sees them as real dates by entering =ISNUMBER(A2) in a helper cell. TRUE means the value is a real date serial; FALSE means it is text and needs conversion. This 10-second check prevents hours of downstream debugging when filters fail to show recent rows or pivot tables refuse to group by month because half the data is hidden behind text formatting.

Fifth, learn the function vocabulary. The core date functions every Excel user should know are TODAY, NOW, DATE, DATEVALUE, EDATE, EOMONTH, WORKDAY, NETWORKDAYS, WEEKDAY, YEAR, MONTH, DAY, HOUR, MINUTE, and TEXT. That sounds like a lot, but each one has a single clear purpose and the syntax is consistent. Spend an hour with a practice file experimenting with each function, and you will retain them permanently. Refer back to this guide whenever you need a refresher on a specific syntax.

Sixth, document your assumptions. If your spreadsheet contains date formulas that depend on the current year, fiscal calendar, or a specific holiday list, write a note in a clearly-labeled cell explaining the logic. Six months from now, you (or a coworker) will thank you for the breadcrumb. Cell comments work well for this, as do dedicated documentation tabs at the front of complex workbooks. Treat date logic as code โ€” because that is what it is โ€” and code deserves comments.

Finally, practice with real exercises. Reading about dates is useful, but typing them, formatting them, and writing formulas against them is what builds lasting skill. Take the free practice quizzes linked throughout this guide, build a few sample workbooks with project schedules and birthday lists, and experiment with edge cases like leap years and month boundaries. Within a week of deliberate practice, you will handle Excel dates with confidence โ€” and the techniques in this guide will become second nature.

FREE Excel Questions and Answers
Comprehensive Excel certification practice test covering dates, formulas, formatting, and analysis.
FREE Excel Trivia Questions and Answers
Fun trivia-style questions covering Excel history, features, shortcuts, and date handling tips.

Excel Questions and Answers

What is the keyboard shortcut to insert today's date in Excel?

Press Ctrl+; (Control plus semicolon) to insert today's date as a static value in the active cell. The date will not change when the workbook recalculates. For the current time, press Ctrl+Shift+; instead. To insert both date and time in one cell, press Ctrl+;, then a space, then Ctrl+Shift+;. These shortcuts work in all desktop versions of Excel and create permanent, non-volatile timestamps.

How do I make a date update automatically every day in Excel?

Use the TODAY() function by typing =TODAY() into the cell. This volatile function recalculates whenever the workbook opens or any input changes, always showing the current system date. For both date and time, use =NOW(). These functions are perfect for dashboard headers and age calculations but should not be used for permanent records since the value changes every day, potentially overwriting historical context you needed to preserve.

Why does my date show as a number like 46163 instead of a calendar date?

Excel stores all dates as serial numbers counted from January 1, 1900. The number 46163 is the underlying value for May 21, 2026. When you see the number instead of a date, the cell format is set to General or Number rather than Date. Press Ctrl+1 to open Format Cells, choose Date or Custom from the category list, pick a format, and click OK. The display will switch to a proper calendar date.

How do I enter a date in Excel without it changing format?

Type the date in ISO format like 2026-05-21 to minimize automatic interpretation, then immediately format the cell as Text-protected Date or use a custom format code. If Excel keeps reformatting your entry, the underlying cell may be formatted as Text instead of Date, which preserves the typed string exactly. To force date interpretation, format the cell as Date first via Ctrl+1, then type your date โ€” Excel will store and display it correctly.

What is the difference between TODAY and NOW in Excel?

TODAY returns only the current date with no time component, displaying as a calendar date like 5/21/2026. NOW returns the current date and time together, displaying with both components like 5/21/2026 3:45 PM. Both are volatile and recalculate together, but NOW changes every minute while TODAY only changes at midnight. Use TODAY for date-only displays and age math; use NOW for timestamps and elapsed-time calculations.

How do I convert text dates to real dates in Excel?

Use the DATEVALUE function with syntax =DATEVALUE(A1) to convert a text date into a serial number, then format the result cell as Date. Alternatively, select the text date column, go to Data, Text to Columns, click Next twice, choose Date in step 3, pick the source format (MDY for US), and click Finish. This converts the entire column in place. Both methods produce real Excel dates that work with sorting and arithmetic.

Can I insert a date picker calendar in Excel?

Excel does not include a built-in date picker for cells, but you can create one using Data Validation with a list of valid dates. Generate the list with =SEQUENCE(365,1,DATE(2026,1,1)), name the range, then apply Data Validation, List, =RangeName. For a true visual calendar dropdown, use a third-party add-in like Mini Calendar and Date Picker from the Microsoft Store, or build one with ActiveX controls and VBA on the Developer tab.

How do I subtract one date from another in Excel?

Simply enter =B2-A2 where A2 holds the earlier date and B2 holds the later date. The result is the number of days between them. If the result displays as a date, change the cell format to Number via Ctrl+1. For business days only, use =NETWORKDAYS(A2,B2). For specific units, use =DATEDIF(A2,B2,"y") for years, "m" for months, or "d" for days. DATEDIF works but is undocumented in modern Excel.

How do I fix dates that are showing in the wrong format after pasting?

First, check if the pasted values are real dates or text by looking at alignment โ€” text aligns left, dates align right. If they are text, use DATEVALUE or Text to Columns to convert them. If they are real dates with the wrong display, select the cells, press Ctrl+1, choose Date or Custom, pick your preferred format, and click OK. For mass conversion, apply a custom format like yyyy-mm-dd to the entire column at once for consistency.

How do I auto-fill a series of dates in Excel?

Type the first date in a cell, then grab the small square at the bottom-right corner of that cell (the fill handle) and drag down or across. Excel auto-increments by one day per cell. For different intervals, type the first two dates of your pattern, select both cells, then drag โ€” Excel detects the pattern. Right-click and drag instead for a menu offering Fill Months, Fill Years, Fill Weekdays, or custom step sizes for monthly or yearly sequences.
โ–ถ Start Quiz