MINUTE DAX Function

The MINUTE dax function returns the minute as a number from 0 to 59, given a date and time value.

DAX Syntax MINUTE(datetime)

Example: Let’s create the measure.

DAX

Minute Measure = MINUTE(TIME(14, 30, 0))

The output of the above dax code is shown below:

MINUTE dax function