I'm succesfully using the formula provided here in an answer here: Get date from week number in Google Sheets
So, I have:
=DATE(2023,1,1)-WEEKDAY(DATE(2023,1,1),3)+7*(WEEKDAY(DATE(2023,1,1),3)>3)+7*(C2-1)
Where C2 is a cell with the week number, and I'm getting the expected result 02/01/2023.
What do I need to change to get the result of 08/01/2023? - the last date of the week?
Thank you again for all of your help!
Part of my problem is probably that I can't work out what the bold parts refer to/mean/do:
=DATE(2023,1,1)-WEEKDAY(DATE(2023,1,1),3)+7*(WEEKDAY(DATE(2023,1,1),3)>3)+7*(C2-1)