Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 date | Input day of week | Result | Result day of week |
06/09/2021 | monday | 16/09/2021 | thursday (next week) |
08/10/2021 | friday | 14/10/2021 | thursday (next week) |
13/10/2021 | wednesday | 21/10/2021 | thursday (next week) |
18/10/2021 | monday | 28/10/2021 | thursday (next week) |
Thanks in advance
Solved! Go to Solution.
Hi @renecernitz ,
Try this in a new custom column:
Date.AddDays(Date.EndOfWeek([Input date]), 4)
This gives me the following ouput:
Pete
Proud to be a Datanaut!
Hi @renecernitz ,
Try this in a new custom column:
Date.AddDays(Date.EndOfWeek([Input date]), 4)
This gives me the following ouput:
Pete
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
Proud to be a Datanaut!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
41 | |
23 | |
21 | |
20 | |
13 |
User | Count |
---|---|
128 | |
60 | |
59 | |
28 | |
20 |