Skip to main content
SheetCraft
📅 Date & Time Function · beginner

NOW Function in Google Sheets

Returns the current date AND time. Updates on every recalculation.

Syntax

NOW()

Returns: Current date and time.

Excel equivalent: NOW (identical)

Examples

Current timestamp

=NOW()

Returns now. Formats as datetime.

Hours until deadline

=(A2 - NOW()) * 24

Multiply by 24 because date math is in days.

Just the time

=NOW() - TODAY()

Fractional part is the time-of-day.

When to use an alternative

  • TODAYOnly need date.
  • Hardcoded valueWant a snapshot.

Common errors and how to fix them

  • Shows as number

    Cause: Wrong format.

    Fix: Format → Number → Date time.

  • Keeps updating

    Cause: NOW recalculates on every change.

    Fix: Paste-special as values to freeze.

Related functions

Frequently Asked Questions

Time zone?

Spreadsheet's time zone, set in File → Spreadsheet settings.

Immutable timestamp?

Apps Script onEdit, or paste-special as values.

Source: Google Sheets official function reference.