• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Calculate Days

Neeraj Dhiman

New Member
Hi All,

I have two dates first date is (start date) ex. 03-mar-2019 and second date (End date) is 31-Dec-2019.

Here is the confusion i want to check only for the month of Oct'19 how many working days are there. Days should be calculated base on the start date and end date as both date are dynamic in nature i might change them frequently.

I tried so many IF combination but not getting the one line formula.

Please help me. Waiting for your responses
 
Your setup and requirement is bit unclear.

Suppose in cell
A1: 03-Mar-2019
B1: 31-Dec-2019
C1: 01-Oct-2019 (start date of the month you are interested in)
then you can try:
=NETWORKDAYS(MAX(A1,C1),MIN(B1,EOMONTH(C1,0)))
 
Back
Top