cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Convert Integer Measure to HH:MM format

STEP 1STEP 1STE2STE2STEP 3STEP 3PBI -2.JPGPBI-1.JPGHi Guys,

 

I have an interger value column from which I need to convert it to hh:mm format, Below is the example.

 

I have a column with values 9, 10.8,12...etc... Now I am trying to convert these values to hh:mm format by creating a measuer like sum(field)/24. it is dividing the value with 24 but I also need the format type to be hh:mm.

 

For example if I have a value of 310, 137.18 I have created a measuer xyz = sum(310, 137.18)/24 = 12,922.38 now I want to convert this 12,922.98 into hh:mm.

 

In excel I have done the same and righ clicked on the cell and choose format --> Number--> custom --> [h]:mm I get 310137:10.

 

I am strugllng to do the same in power bi as the data type function in modelling is disabled,If I highlight the measuer and click on the modeling the data type is not enabled.

 

 Please find the screenshots below.Any suggestions please help, Let me know if needed any details Thanks

 

 

 

1 REPLY 1
v-xjiin-msft
Solution Sage
Solution Sage

Hi @Anonymous,

 

Yes, there's no such custom SUM Hours format like Excel in Power BI. So to achiveve your requirement, we need to do some workarounds by using Power Query.

 

As in your scenario, we need to do the format first and then create a measure xyz to calculate the SUM. For the format, you can refer to following method:

 

Go to Edit Queries, add a custom column with Duration.TotalHours function which will return the total hours.

 

= Duration.TotalHours(Duration.From([Column1]))

1.PNG

 

After doing these format, then you can go back to Data Model and create the xyz measure to get the total SUM Hours.

 

Then for the last part as converting the number to HH:MM format. I'm afraid it cannot be achieved since there's no such corresponding format, and we are doing something like converting a number from SUM measure to Text. 

 

Thanks,
Xi Jin.

 

 

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