Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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"
Solved! Go to Solution.
Hi @LewisH,
If I understand you correctly, the formula below should work in your scenario.
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
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]))
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]))
Hi @LewisH,
If I understand you correctly, the formula below should work in your scenario.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
56 | |
55 | |
54 | |
37 | |
29 |
User | Count |
---|---|
77 | |
62 | |
45 | |
40 | |
40 |