In Excel’s date system, dates are serial numbers and times are fractional parts of one day . When a value contains both a date and a time together, it is sometimes called a “datetime”. For example, the date November 2, 2021 corresponds to the serial number 44502. If we create this date with the DATE function, it returns 44502:

=DATE(2021,11,2) // returns 44502

When a date format is applied to this value in a cell, the number 44502 can be displayed as “November 2, 2021”, “2-Nov-21”, etc.

If the number is instead 44502.5, it is called a “datetime” because it contains both a date and time. This is equivalent to the following formula:

=DATE(2021,11,2)+TIME(12,0,0) // returns 44502.5

If a date format that includes time is applied to a cell with that contains 44502.5, the value can be displayed as “November 2, 2021 12:00”, “Nov 2 12:00 PM”, etc.

In short, any date serial number that includes a decimal value can be considered a datetime.

An Excel Table is a special object for managing data in Excel. Excel Tables have a name which appears in the name box when the entire table is selected. To quickly create an Excel Table, select any cell in the data, and use the keyboard shortcut control + T. Links to video demos appear below this article. For a complete introduction to Excel Tables see: Excel Tables .

Key advantages to Excel Tables

Compared to manually formatted tables, Excel Tables have several key advantages:

Structured data - data appears in rows and columns without spaces. This makes it easy to work with the data like a database.

Automatic formulas - new rows “inherit” existing formulas, and changes to an existing formula automatically propagates throughout a column.

Filters - although filters can be applied to any normal table, they are automatically available in an Excel Table.

Automatic formatting and styles - Tables can be rapidly formatted using Table Styles, and new data added to Excel Table inherits this formatting.

Structured references - structured references make it easy to refer to table rows and columns without specific cell references.

Enhanced shortcuts - shortcuts for manipulating rows and columns work better with Excel Tables. See this video for a demonstration.

Dynamic ranges - Excel tables automatically expand to include new rows, so they behave like dynamic ranges, and are perfect for things like charts and pivot tables.