ExcelAtEverything
Active Member
- Joined
- Jan 30, 2021
- Messages
- 351
- Office Version
- 2019
- Platform
- Windows
Hello,
I was wondering if anyone could help me with what is probably a very simple tweak. This currently takes a copy of my date column and changes all the dates to Sunday's date of whatever week that is.
The trouble is that my weeks run Fri-Thu, so I need it to show the date of the Friday at the start of each week, not Sunday..
Thx for any help!
I was wondering if anyone could help me with what is probably a very simple tweak. This currently takes a copy of my date column and changes all the dates to Sunday's date of whatever week that is.
The trouble is that my weeks run Fri-Thu, so I need it to show the date of the Friday at the start of each week, not Sunday..
Thx for any help!
Power Query:
= Table.TransformColumns(#"Duplicated Column",{{"Date - Copy", Date.StartOfWeek, type date}})