Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I am trying to calculate the defect turn around time i.e created date - resolved date and I need to consider only networking days.
Can see the option in excel, but cant figure it out in BI. Request help. I have the pbix in the below location.
https://drive.google.com/file/d/1cUAs6a8plrgNYjYrwVTr5D0rT7V9fVyW/view?usp=sharing
Solved! Go to Solution.
Hi @bunny18 ,
Create a relationship between table "Date Table" and table "Defect TAT", and then create a weekday column in table "Date Table".
weekday = WEEKDAY('Date Table'[Date],2)
TAT_NETWORKING =
CALCULATE(
COUNTROWS ( 'Date Table'),
DATESBETWEEN ( 'Date Table'[Date].[Date], 'Defect TAT'[Created Date], 'Defect TAT'[Resolved month]-1 ),
'Date Table'[weekday] >= 1&&'Date Table'[weekday]<=5,
ALL ( 'Defect TAT' )
)+0
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @bunny18 ,
Create a relationship between table "Date Table" and table "Defect TAT", and then create a weekday column in table "Date Table".
weekday = WEEKDAY('Date Table'[Date],2)
TAT_NETWORKING =
CALCULATE(
COUNTROWS ( 'Date Table'),
DATESBETWEEN ( 'Date Table'[Date].[Date], 'Defect TAT'[Created Date], 'Defect TAT'[Resolved month]-1 ),
'Date Table'[weekday] >= 1&&'Date Table'[weekday]<=5,
ALL ( 'Defect TAT' )
)+0
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@bunny18 , On the attached file check - Working Day Diff
also check
https://www.sqlbi.com/articles/counting-working-days-in-dax/
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.