Forum Discussion
Anonymous
8 years agoNot applicable
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.
- Anonymous8 years ago
Anonymous A cleaner way might be to use the HOUR, MINUTE, and SECOND functions to extract the values.
-Parker
- 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:
Birdjo
8 years agoResolver II
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: