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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
eWise
Helper II
Helper II

Dateadd function to give a later date

Hi all,

 

I have a datetime column and I need an adjusted datetime column where if an entry falls on a saturday, the adjusted datetime goes to the following Monday 9 a.m. else the datetime remains remains unchanged like below. 

 

DayOfWeekDateTimeAdjustedDateTime
Sat4/10/2021 11:004/12/2021 9:00
Mon3/29/2021 9:203/29/2021 9:20

 

Thanks for the help. 

1 ACCEPTED SOLUTION

Thank you @Fowmy It worked perfectly. 

 

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@eWise 

You can add the following calculated column to your table:

Adjusted DateTime = 

IF(
    WEEKDAY([DateTime]) = 7,
    INT([DateTime]) + 2 + TIME(9,0,0),
    [DateTime]
)

 

Fowmy_0-1619349025912.png

 

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thank you @Fowmy It worked perfectly. 

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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
Top Kudoed Authors