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
renecernitz
Frequent Visitor

How to get the date of the next specific day of the week from a given date

Hi fellow members,

 

I need to solve th following issue:

 

From a given date I need to obtain the date of thursday of the following week.

 

Input dateInput day of weekResultResult day of week
06/09/2021monday16/09/2021thursday (next week)
08/10/2021friday14/10/2021thursday (next week)
13/10/2021wednesday21/10/2021thursday (next week)
18/10/2021monday28/10/2021thursday (next week)

 

Thanks in advance

 

@BA_Pete

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @renecernitz ,

 

Try this in a new custom column:

Date.AddDays(Date.EndOfWeek([Input date]), 4)

 

This gives me the following ouput:

BA_Pete_0-1636370332424.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

3 REPLIES 3
BA_Pete
Super User
Super User

Hi @renecernitz ,

 

Try this in a new custom column:

Date.AddDays(Date.EndOfWeek([Input date]), 4)

 

This gives me the following ouput:

BA_Pete_0-1636370332424.png

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Suggest you specify the `firstDayOfTheWeek` argument as `Day.Monday`. 

 

If I don't do that, your formula returns the next Wednesday.  Possibly due to my regional settings which have Sunday as the first day of the week. 

 

Or, better yet, ask the OP when his week starts, and adjust accordingly.

Hi @ronrsnfld ,

 

Thanks for the suggestion.

If the necessary correction was more difficult than changing one number then I might have done so.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




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