SECOND DAX Function

The SECOND DAX function returns the seconds of a time value, as a number from 0 to 59.

DAX Syntax SECOND(time)

Example: Let’s create the measure.

DAX

Second Measure = SECOND(TIME(14, 30, 20))

The output of the above code is shown below:

SECOND dax function