Need the formula below to recognize that the beginning of the week is a Friday. If the "Date of Shift" lands on a Friday, then the "Week of" should be the same date.
=IF(WEEKDAY([Date of Shift]@row) = 7, [Date of Shift]@row - 1, [Date of Shift]@row - (WEEKDAY([Date of Shift]@row) + 1))
Below is a screenshot of the formula in action, working properly except when the shift date lands on a Friday.
In the example below, if the date of shift is 1/17/2025, the "Week of" should be 1/17/2025. Our shifts are tracked Friday through Thursday.
THANK YOU IN ADVANCE!