Answers for "excel calculate week start date"

1

excel find start of week

=A2-MOD(A2-1,7)
Posted by: Guest on February-18-2020
0

Excel week number to date

'ISO_8601: Week date
'the week with the starting year's first Thursday in it
' Cell D2 == Week Nr
' Cell D3 == Year Nr
'First day of week
=IF(WEEKDAY(DATE(D3,1,1),2)<=4,DATE(D3,1,1)-WEEKDAY(DATE(D3,1,1),2)-1,DATE(D3,1,1)+(7-WEEKDAY(DATE(D3,1,1),2))+1)+(D2-1)*7
'last day of the week 
=IF(WEEKDAY(DATE(D3,1,1),2)<=4,DATE(D3,1,1)-WEEKDAY(DATE(D3,1,1),2)-1,DATE(D3,1,1)+(7-WEEKDAY(DATE(D3,1,1),2))+1)+D2*7-1
Posted by: Guest on November-06-2021

Code answers related to "excel calculate week start date"

Browse Popular Code Answers by Language