Dated if excluding weekends

Anya333

New Member
Joined
Aug 4, 2022
Messages
5
Hi, can anyone help me with this formula please?
Row 8 - I want to calculate number of days per month based on start date (B1) and end date (B2) but excluding weekends. Please help. Many thanks.

1659596686927.png
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
From 20.July to 30.Sept = 53 working day, the formula ok.
Seem as you want to colculate in july only, you can add date(yyyy,mm,dd) like this:
NETWORKDAYS(A7,IF(A8<=DATE(2022,7,31),A8,DATE(2022,7,31)))
 
Last edited:
Upvote 0
Try this in B8:

=NETWORKDAYS(MAX($B$1,B4),MIN($B$2,B5))
 
Upvote 0
Or this slight amendment to post#5..

=MAX(NETWORKDAYS(MAX($B1,B4),MIN($B2,B5)),0)
 
Upvote 0
sorry for another question - can I use the same Max/Min formula for calendar days ie. MAX(DAYS(MAX($B1,B4),MIN($B2,B5)),0) for cell B7 instead of using Datedif?
 
Upvote 0

Forum statistics

Threads
1,215,746
Messages
6,126,642
Members
449,325
Latest member
Hardey6ix

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