How I calculating working days

C

Centauro

Hi I need calculating how many working days (Mo - Fr) has past from une date
to another

if tony start in 01/01/2008 an finish in 22/08/2008 = 179 working days

Tks
 
T

T. Valko

if tony start in 01/01/2008 an finish in 22/08/2008
= 179 working days

I think the correct answer is 169

Try one of these:

A1 = start date
B1 = end date

This formula requires the Analysis ToolPak add-in be installed:

=NETWORKDAYS(A1,B1)

Or this one:

=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(A1&":"&B1)),2)<6))
 
T

T. Valko

Clarification:
This formula requires the Analysis ToolPak add-in be installed:
=NETWORKDAYS(A1,B1)

That formula requires the Analysis ToolPak add-in be installed for Excel
versions prior to Excel 2007.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top