MTD running total formula

  • Thread starter Thread starter brianwa
  • Start date Start date
B

brianwa

I am building a spreadsheet that tracks sales on a daily basis.
What I want to do is have a column that shows where we should be in
sales on a particular day. Normally that would be simple but my sheet
has everyday of the month in it and I want to exclude Sat, Sun and
Holidays from the formula.

The sheet is set up as follows with the sales target for the month in
cell D1 and the amount of shipping days in D2.
A B C D
Sales Daily Target
8 Thu 1/1/04
9 Fri 1/2/04
10 Sat 1/3/04
11 Sun 1/4/04

Thanks in advance,
BW
 
With the month start date in a cell on the worksheet (A1 in this
example), and the holidays in a named range (Holidays), enter the
following formula in cell C8, and copy down:

=$D$1/$D$2*NETWORKDAYS($A$1,B8,Holidays)

NETWORKDAYS is a function in the Analysis Toolpak. If it's not
installed, you'll see #NAME? in the cell with the formula.
 
Thanks,

I must be suffering from holiday cheer. I never thought to adjust the
end date on the networkdays formula =-(

Much appreciated.
BW
 

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

Similar Threads

Payroll 1
vlookup help? 7
Weekend dates conditional format 3
Dcounta 4
Name of the Day 2
Need to lookup value in cell, dependent on value in another cell 1
"Last 7 Days" running total? 19
Weekday Formula 4

Back
Top