Subtracting time in date format

  • Thread starter Thread starter Collcat
  • Start date Start date
C

Collcat

Yes you are correct.

I have a column of due dates (all different) and I need to subtract th
allowed assignment time (8 weeks/40 days), not counting weekends.

So I want to calculate the start date for the assignments.

// Coolca
 
A4 is the due date

startdate =IF(WEEKDAY(A4)=0,A4-2-56,IF(WEEKDAY(A4)=7,A4-1-56,A4-56))

56= 8weeks * 7 days

solution does not include the weekends as you said

Let me know if you got it
 
Back
Top