cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not 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.

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

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

 

-Parker

View solution in original post

Birdjo
Resolver II
Resolver 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:
image.png

View solution in original post

3 REPLIES 3
Birdjo
Resolver II
Resolver 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:
image.png

Anonymous
Not applicable

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

 

-Parker

BFroc
Frequent Visitor

Make sure you use some of teh advanced options when you're using the split column by delimiter function. You want a Right split, and only the first delimiter.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors