cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors