Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

How to split HH:MM:SS in 3 columns

Hi Guys,   I have 13:25:55 and I need just one column with the seconds, 55. I've already tried slipt column by delimiter : , but didn't work.
  • Anonymous's avatar
    Anonymous
    8 years ago

    Anonymous A cleaner way might be to use the HOUR, MINUTE, and SECOND functions to extract the values.

     

    -Parker

  • Birdjo's avatar
    8 years ago

    Hello Anonymous,

    You can use the HOUR, MINUTE and SECOND functions like this:

    Create 3 new columns with the following DAX:

     

    Hours = HOUR('Table1'[TimeColumn])
    Minutes = MINUTE('Table1'[TimeColumn])
    Seconds = SECOND('Table1'[TimeColumn])


    Here's the result: