Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
LewisH
Helper II
Helper II

Calculating days between dates and ignore if blank

I have two dates in a table, Registering Day and Day out. 

 

There will always be a registering date, but not always a day out. I need to work out the average daby between but this is casuing errors beciase one of the days will be blank. I have started with something like this but can anyone guide me on how to correct it. Thanks

 

Workingdays = CALCULATE(SUM('DateKey'[IsWorkingDay]), DATESBETWEEN(DateKey[Date],'Put Away Headers'[Registering_Date],'Put Away Headers'[Day_Out])) -- Here i need to filter out blank "Day Out"

2 ACCEPTED SOLUTIONS
v-ljerr-msft
Employee
Employee

Hi @LewisH,

 

If I understand you correctly, the formula below should work in your scenario. Smiley Happy

Workingdays =
IF (
    ISBLANK ( 'Put Away Headers'[Day_Out] ),
    BLANK (),
    CALCULATE (
        SUM ( 'DateKey'[IsWorkingDay] ),
        DATESBETWEEN (
            DateKey[Date],
            'Put Away Headers'[Registering_Date],
            'Put Away Headers'[Day_Out]
        )
    )
)

 

Regards

View solution in original post

Ashish_Mathur
Super User
Super User

Hi,

 

Does this work?

 

=CALCULATE(SUM('DateKey'[IsWorkingDay]),FILTER('Put Away Headers','Put Away Headers'[Day_out]<>BLANK()),DATESBETWEEN(DateKey[Date],'Put Away Headers'[Registering_Date],'Put Away Headers'[Day_Out]))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

 

Does this work?

 

=CALCULATE(SUM('DateKey'[IsWorkingDay]),FILTER('Put Away Headers','Put Away Headers'[Day_out]<>BLANK()),DATESBETWEEN(DateKey[Date],'Put Away Headers'[Registering_Date],'Put Away Headers'[Day_Out]))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-ljerr-msft
Employee
Employee

Hi @LewisH,

 

If I understand you correctly, the formula below should work in your scenario. Smiley Happy

Workingdays =
IF (
    ISBLANK ( 'Put Away Headers'[Day_Out] ),
    BLANK (),
    CALCULATE (
        SUM ( 'DateKey'[IsWorkingDay] ),
        DATESBETWEEN (
            DateKey[Date],
            'Put Away Headers'[Registering_Date],
            'Put Away Headers'[Day_Out]
        )
    )
)

 

Regards

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors