week ending "Sunday" date function

  • Thread starter Thread starter krislyn
  • Start date Start date
K

krislyn

I would like the date in cell B1 on a weekly timesheet to always be th
previous Sunday's date when I open it. (once a week to update fo
previous week's time) What would the formula be for that?

Thanks
krisly
 
Assuming that if you open it on Sunday, you want that day's date, one
way::


=TODAY()-WEEKDAY(TODAY(),2)
 
Back
Top