Excel stores dates as serial numbers (day count from epoch). Times are fractions of a day. Display is format-only.
Formulas
=TODAY()
=NOW()
=A1+7 ' date seven days after A1 if A1 is date
Functions
=YEAR(A1), =MONTH(A1), =EOMONTH(A1,0) for month-end.
Locale
US vs EU date order confusion—prefer ISO yyyy-mm-dd in shared files or document assumptions.
Important interview questions and answers
- Q: TODAY() volatile?
A: Recalculates when workbook recalculates. - Q: Serial number?
A: Underlying numeric date representation.
Self-check
- What does TODAY() return?
- Why document date format in shared files?
Tip: Store dates as real serials; never leave ambiguous 01/02/03 text in shared models.
Interview prep
- Serial date?
Number representing days; display is formatting.