Skip to content
Google Sheets

DAY function in Google Sheets

Returns the day of the month that a specific date falls on, in numeric format.

=DAY(date)

DAY syntax and parameters

One argument, one required.

  • dateanyRequired

    The date from which to extract the day. Must be a reference to a cell containing a date, a function returning a date type, or a number.

DAY examples

Formulas you'll actually reuse.

  1. The day of the month from an invoice date:

    =DAY(B2)

    Result14

  2. How many days the invoice's month has:

    =DAY(EOMONTH(B2, 0))

    Result31

DAY in Excel

Same name — your formula ports as-is.

Try DAY in the playground

Edit the example — nothing to install.

Preloaded with the DAY formula from Example 1 — change anything and watch it respond.

Loading the editor…