Workdays between 2 days, summarised by week

JW2989

New Member
Joined
Jan 18, 2022
Messages
18
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am trying to find the total workdays for my Project, summarised by week:

My project Start & End Date has 18 workdays.

Question - how do i plot the workdays in each week in COLUMNS I to M

WeeklyTest.xlsx
DEFGHIJKLM
3January
4NameProjectStartEndWorkday03/01/202210/01/202217/01/202224/01/202231/01/2022
5Jon BeecherSales 202001/01/202226/01/202218
Sheet1
Cell Formulas
RangeFormula
H5H5=NETWORKDAYS(F5,G5)
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Try this

Book1
DEFGHIJKLM
3January
4NameProjectStartEndWorkday03-01-202210-01-202217-01-202224-01-202231-01-2022
5Jon BeecherSales 202001-01-202226-01-20221815552
Sheet1
Cell Formulas
RangeFormula
H5H5=NETWORKDAYS(F5,G5)
I5:M5I5=NETWORKDAYS(MAX($F5,I$4-6),MIN(I$4,$G5))
 
Upvote 0
Try this

Book1
DEFGHIJKLM
3January
4NameProjectStartEndWorkday03-01-202210-01-202217-01-202224-01-202231-01-2022
5Jon BeecherSales 202001-01-202226-01-20221815552
Sheet1
Cell Formulas
RangeFormula
H5H5=NETWORKDAYS(F5,G5)
I5:M5I5=NETWORKDAYS(MAX($F5,I$4-6),MIN(I$4,$G5))
How would I display "" for weeks when there is no workdays? I am currently getting lots of minus numbers in the weeks where projects are yet to start?

Thanks,
 
Upvote 0
Try this

Book1
DEFGHIJKLM
3January
4NameProjectStartEndWorkday03-01-202210-01-202217-01-202224-01-202231-01-2022
5Jon BeecherSales 202001-01-202226-01-20221815552
Sheet1
Cell Formulas
RangeFormula
H5H5=NETWORKDAYS(F5,G5)
I5:M5I5=NETWORKDAYS(MAX($F5,I$4-6),MIN(I$4,$G5))

Upon testing this does not work (I get 18 days but it is totalling each week wrong)

I have added what would be actually expected in the picture below:

1642946841728.png
 
Upvote 0
Hi,

How about this:

Book3.xlsx
DEFGHIJKLM
3January
4NameProjectStartEndWorkday1/3/20221/10/20221/17/20221/24/20221/31/2022
5Jon BeecherSales 20201/1/20221/26/20221855530
6Jack1/14/20222/2/20221401553
7Jane1/15/20221/27/2022900540
Sheet953
Cell Formulas
RangeFormula
H5:H7H5=NETWORKDAYS(F5,G5)
I5:M7I5=MAX(NETWORKDAYS(MAX($F5,I$4),MIN($G5,I$4+6)),0)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,833
Messages
6,121,864
Members
449,052
Latest member
Fuddy_Duddy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top