In Excel, given a date like 3/17/2024
, how can I get the date corresponding to Friday in the same week?
Try using WEEKDAY()
function:
=B2+7-WEEKDAY(B2+1)
Or, the above will be dynamic as it will return the second last week ending day, but if you are going to enter the first day of the week always and which is Sunday
and need the Friday
then simply use;
=B2+5