Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.