Skip to content

=DATESERIAL

The =DATESERIAL() function can be used to create a date from its individual components. Useful for constructing dates dynamically in calculations, workflows, or reporting.

=DATESERIAL(Year; Month; Day)
  • Year

    • The numeric year component of the date (e.g., 2025).
  • Month

    • The numeric month component (1–12).
  • Day

    • The numeric day component (1–31, depending on the month).
  • Combines the specified year, month, and day into a valid date.

  • Supports numeric inputs and can be used in further date calculations or formulas.

  • Ensure numeric values are valid for the calendar (e.g., no February 30).

  • Formula functions are case sensitive and must be in all caps.

=DATESERIAL(2025; 6; 15)
// Returns: 2025-06-15

DATESERIAL, create date, construct date, year month day, date calculation, workflow formulas, dynamic date, formula function, process field dates