I want to set weekly off as Thursday instead of Saturday & Sunday

  • Thread starter Thread starter Porwal P K
  • Start date Start date
If you want to fill a series of dates and exclude Thursdays:

Enter the starting date in your first cell, assume A1:

A1 = 7/1/2008

Enter this formula in A2 and copy down as needed:

=A1+CHOOSE(WEEKDAY(A1),1,1,1,2,1,1,1)
 
Back
Top