Formula Subtracting Business Days

E

Erika

I need to create a formula that will take a date that I have listed in my
spreadsheet and subtract from it the number of business days.

For example

Date in cell A1 11/12/2007
Number of Business days to subtract in A2 12
 
R

Rick Rothstein \(MVP - VB\)

I need to create a formula that will take a date that I have listed in my
spreadsheet and subtract from it the number of business days.

For example

Date in cell A1 11/12/2007
Number of Business days to subtract in A2 12

=WORKDAY(A1,-A2)

Note that this function requires the Analysis ToolPak be enabled (found at
Tools/Add-Ins on Excel's menu bar. The WORKDAY function also allows you to
account for holidays if you want (see the help files).

Rick
 
R

ryguy7272

In Call A1:
11/12/2007

In Cell A2:
11/1/2007

In Cell A3:
=NETWORKDAYS(A2,A1)

Result:
8

From Help:
NETWORKDAYS(start_date,end_date,holidays)


Regards,
Ryan---
 
E

Erika

How do I get the formula to give me the result of 11/1/2007 if I have

In cell A1:
11/12/2007

In cell A2:
8

Formula result 11/1/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