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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Walt1010
Helper IV
Helper IV

Update the time part of a datetime value

I'd like to update the date part of a datetime value (eg

from 

08/07/2024 09:00:00)

 

to midnight 

08/07/2024 24:00:00

 

but I'm not sure if its just easier to extract the date and create a new datetime value, or to update the time in an existing value, and whether I have to do various conversions. Any ideas?

1 ACCEPTED SOLUTION

you can try this in PQ

 

=DateTime.From( Date.From([column]))

11.PNG

 

or 

 

=DateTime.From(Date.AddDays( Date.From([column]),1))

 

12.PNG

 

if you don't want the original column , you can remove it in the end





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

6 REPLIES 6
Kedar_Pande
Community Champion
Community Champion

You can write the below DAX:

 

NewDateTime = DATE(YEAR([DateTime]), MONTH([DateTime]), DAY([DateTime])) + TIME(0, 0, 0)

 This expression extracts the date portion from your existing DateTime field and resets the time to midnight. You can replace [DateTime] with the actual column name in your dataset.

 

If this post helps, please consider Accepting it as the solution to help the other members find it more quickly. Your Kudos/Likes are much appreciated!

 

Regards,

Kedar Pande

www.linkedin.com/in/kedar-pande

ryan_mayu
Super User
Super User

@Walt1010 

you can to change all the time to midnight? or only 9 am?

what's more, we don't have 24 for hour, should that be 00:00:00?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




I want to change the time to midnight in all cases. Sorry I didn't realise it should be 00:00:00. I actually need to show midnight datetime as the next day's date plus 00:00:00.

you can try this in PQ

 

=DateTime.From( Date.From([column]))

11.PNG

 

or 

 

=DateTime.From(Date.AddDays( Date.From([column]),1))

 

12.PNG

 

if you don't want the original column , you can remove it in the end





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thats great. Many thanks!

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.