Excel Count Weekdays Formula

Z

Ziggy M

I need a Formula that will count weekdays only For Example

A1-7/13/06

I am going to need 12 days to complete the task so in another cell
want it to only count 12 working days (monday to friday) and displa
the result in cell c1

any help
 
B

Biff

Hi!

Try this:

=WORKDAY(A1,12)

The workday function requires the Analysis ToolPak add-in be installed. If
the formula returns #NAME? that probably means you don't have the ATP
installed. If that's the case, goto the menu Tools>Addins.

Biff
 
D

Dave O

The formula is
=WORKDAY(A1,12)
but it can be expanded to include a list of holidays: check out Help.
 
N

Nelly

Hi,

try NETWORKDAYS() function - just search help as not sure how it works.
just have start/end date parameters I believe.

god luck
 
G

Guest

=workday(A1,12)

This is part of analysis toolpak (Tools=>Add-ins=>Analysis Toolpak)

HTH
 
B

Biff

P.S.

This formula returns the date serial number. You'll have to format the
formula cell as DATE.

Biff
 
M

mhart210

Just an after thought, but if you need to account for holidays, you can
use NETWORKDAYS. This will allow you to create a list of holidays that
will be skipped in addition to Saturday and Sunday. Please note that
this also requires the analysis toolpak to be installed.
 
B

Biff

mhart210 said:
Just an after thought, but if you need to account for holidays, you can
use NETWORKDAYS. This will allow you to create a list of holidays that
will be skipped in addition to Saturday and Sunday. Please note that
this also requires the analysis toolpak to be installed.

The WORKDAY function also has an optional holidays argument.

Syntax

WORKDAY(start_date,days,holidays)

Biff
 

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