MINUTE

Description

Extracts the minute (0–59) from a Datetime value, based on the context user’s local time zone.

Syntax

MINUTE(datetime) -> Integer

Parameters

ParameterData TypeRequiredDescription
datetimeDatetimeYesThe Datetime value from which the minute is extracted.

Example

MINUTE(NOW())
-- Returns 55 (if now = 2024-09-18T15:25:22.418Z and user is in GMT+5:30).

Related Formula