Date & Time Functions

Navigation

Part of Excel

How Excel Stores Dates

Dates are stored as serial numbers (day count since 1 Jan 1900 = 1). Time is the decimal fraction of a day (12:00 PM = 0.5). This is why dates can be added/subtracted directly.

Getting Current Date/Time

=TODAY()     β†’ current date (volatile, updates on recalculation)
=NOW()       β†’ current date + time

Building & Extracting Dates

=DATE(year, month, day)
=YEAR(date)  =MONTH(date)  =DAY(date)
=WEEKDAY(date, [return_type])   β†’ 1=Sun...7=Sat by default
=WEEKNUM(date)
=TEXT(date,"dddd")               β†’ day name, e.g. "Wednesday"

Date Arithmetic

=EDATE(start_date, months)        β†’ add/subtract months
=EOMONTH(start_date, months)      β†’ last day of month, n months away
=DATEDIF(start, end, unit)        β†’ difference; units: "Y","M","D","YM","MD","YD"

Warning

DATEDIF is undocumented in the UI (no autocomplete/help) but fully functional β€” very useful for age/tenure calculations.

Working days:

=NETWORKDAYS(start, end, [holidays])          β†’ count business days
=NETWORKDAYS.INTL(start, end, [weekend], [holidays])  β†’ custom weekend pattern
=WORKDAY(start, days, [holidays])             β†’ date n working days from start
=WORKDAY.INTL(start, days, [weekend], [holidays])

Time Functions

=TIME(hour, minute, second)
=HOUR(time)  =MINUTE(time)  =SECOND(time)
=TEXT(time,"hh:mm AM/PM")

Handy Patterns

GoalFormula
Age in years=DATEDIF(DOB, TODAY(), "Y")
Days until deadline=DueDate - TODAY()
First day of month=DATE(YEAR(A1),MONTH(A1),1)
Last day of month=EOMONTH(A1,0)
Quarter number=ROUNDUP(MONTH(A1)/3,0)
Is weekend?=WEEKDAY(A1,2)>5

Common Date Errors

  • Dates stored as text (left-aligned instead of right-aligned) break arithmetic β€” fix with =DATEVALUE(text)
  • Regional format mismatches (DD/MM/YYYY vs MM/DD/YYYY) cause silent misreads

See Also