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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Freeseman
Helper II
Helper II

Minutes into Hours

Hi,

 

I am struggling to change minutes into hours for the duration column.

What query can i write.

Table name is EQUIPMENT_STATUS_SUMMARY

 

Freeseman_0-1659340861955.png

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

This looks like your DAX screen. 

For DAX, you can use following formula to convert mins into hours

=[DURATION]/60

In PQ, you can use following

1. If you need this value in a different column

= [DURATION]/60

2. If you want to replace within column itself wjere #"Changed Type" would need to be replaced with your last step

= Table.ReplaceValue(#"Changed Type",each [DURATION],each [DURATION]/60,Replacer.ReplaceValue,{"DURATION"})

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

This looks like your DAX screen. 

For DAX, you can use following formula to convert mins into hours

=[DURATION]/60

In PQ, you can use following

1. If you need this value in a different column

= [DURATION]/60

2. If you want to replace within column itself wjere #"Changed Type" would need to be replaced with your last step

= Table.ReplaceValue(#"Changed Type",each [DURATION],each [DURATION]/60,Replacer.ReplaceValue,{"DURATION"})

Thank you. I add custom column and did what you mentioned. It worked.

=[DURATION]/60

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors