Google Sheets – Display Date of Each Weekday of Current Week

formulasgoogle sheetsgoogle-sheets-datesworksheet-function

I have seven spreadsheets, one for each day of the week. I am trying to get each one to display their date for that week. So for example, this week Monday would display 7/16/2018 and the Tuesday spreadsheet would display 7/17/2018. Even if it is Monday, I wanna be able to open the Tuesday spreadsheet and have it display the date of what that upcoming Tuesday will be. I've been messing around with different formulas and can't figure it out.

Best Answer

Monday Sheet:

=WORKDAY.INTL(TODAY()-1,1,"0111111")

String method: weekends can be specified using seven 0’s and 1’s, where the first number in the set represents Monday and the last number is for Sunday. A zero means that the day is a work day, a 1 means that the day is a weekend. For example, “0000011” would mean Saturday and Sunday are weekends.