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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Create a simple date/time with a formula

Hello

 

I try to create a datetime based on a IF condition but i can't manage to do it. I would like to transform any datetime that starts after 09 AM to a datetime that starts at 09AM.

I guess it should be simple and i apologize for being so dull

 

This is the formula i am using :

 

Heure début corrigée = if(hour(Calendriers[Début]) < 9;DATEVALUE(year(Calendriers[Début]) & "/" & month(Calendriers[Début]) & "/" & day(Calendriers[Début]) & " 09:00:00");Calendriers[Début])
 
 

Problem is "29/05/2020 08h00" is transformed to "29/05/2020 00h00", not to "29/05/2020 09h00".

 

If anyone has time to help me, i would greatly appreciate it.

 

Best regards

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try like

 

if(hour([datetime])<9 , [datetime].date + time(9,0,0) , [datetime])

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

 

if(hour([datetime])<9 , [datetime].date + time(9,0,0) , [datetime])

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thank you so much, works like a charm

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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