Number of Weekend Days between 2 Dates Q

  • Thread starter Thread starter Seanie
  • Start date Start date
S

Seanie

Is it possible to calculate the number of weekend days between two
dates? Below is my formula that returns the number of days between 2
inputted values, but what is the total weekend days between these two
values?

((Masters!I52-(Masters!I1-6))
 
The NETWORKDAYS function gives you the number of non-weekend days between two
given dates, so you could just subtract this result from your formula result.
 
Back
Top