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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
slounsbury
Helper II
Helper II

Convert Column from Minutes to Hours

Hi All,

 

I have a column that I created through a mesuare that add two columns but it is in minutes instead of hours which I need for comparision reasons. I found several different ways to do this on the forum but was confused on how to actually impliment it.

 

Here is what I am wanting to do. The column in bold is what I am hoping to accomplish.

 

v_rpt_service Table

 

ART_Resolved_ActualART_Resolved_Actual_Hour
0 0
3005
1121.86
2564.26
85414.23
420.71

 

Thanks!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Divide ART_Resolved_Actual by 60.

 

ART_Resolved_Actual_Hour=ART_Resolved_Actual/60.

 

Am i missing something here , looks so simple 🙂

 

Thanks

Raj

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Divide ART_Resolved_Actual by 60.

 

ART_Resolved_Actual_Hour=ART_Resolved_Actual/60.

 

Am i missing something here , looks so simple 🙂

 

Thanks

Raj

What I ended up having to do was dividing both columns by 60 that were used to create the calculated column (ART_Resolved_Actual) and then re-add them which worked.

Unfortunatly It doesn't appear to be that simple. I also ran the forumla you posted with the same result.

 

Capture.PNG

Anonymous
Not applicable

How ART_Resolved_Actual is being calculated ?

 

Thanks
Raj

ART_Resolved_Actual = CALCULATE(SUM(v_rpt_Service[Minutes_Waiting])+SUM(v_rpt_Service[Resolved_Minutes]))

 

Thanks!

Helpful resources

Announcements
FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors