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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
arsm
Frequent Visitor

How to combine Date Hour in power query

Hello, I'm new to power bi, how do i combine date and hour into column 

 

result im lookig from  2/15/2023 14:32:45  to  2/15/2023 14:0:0  i want to remove minutes and seconds and keep the format as date/time

 

Thank you

2 ACCEPTED SOLUTIONS
ronrsnfld
Super User
Super User

in Power BI, you can add a new column:

 

 

Date-hr = Time(hour([Column1]),0,0) + Int([Column1])

 

 

 

View solution in original post

collinsg
Super User
Super User

Good day arsm,

Power Query provides a function Time.StartOfHour, for example if your datetime column is called "DateTime" and your previous steps is called "Previous Step", this code will transform the column to give the start of the hour and retain the type as datetime.

= Table.TransformColumns(#"Previous Step",{{"DateTime", Time.StartOfHour, type datetime}})

This transformation is available via the GUI on the "Transform" tab, "Date & Time Column" area and "Time", "Hour", "Start of Hour".

Hope this helps

View solution in original post

4 REPLIES 4
collinsg
Super User
Super User

Good day arsm,

Power Query provides a function Time.StartOfHour, for example if your datetime column is called "DateTime" and your previous steps is called "Previous Step", this code will transform the column to give the start of the hour and retain the type as datetime.

= Table.TransformColumns(#"Previous Step",{{"DateTime", Time.StartOfHour, type datetime}})

This transformation is available via the GUI on the "Transform" tab, "Date & Time Column" area and "Time", "Hour", "Start of Hour".

Hope this helps

arsm
Frequent Visitor

Thank you collinsg

ronrsnfld
Super User
Super User

in Power BI, you can add a new column:

 

 

Date-hr = Time(hour([Column1]),0,0) + Int([Column1])

 

 

 

Thank you ronrsnfld 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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