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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.