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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Is it possible to get an end date that is exactly 10 business days from the start date (excluding weekends and public holidays)?
Solved! Go to Solution.
Hi, @hemendranath
You need a ‘Holiday Table’ that lists all your holiday so that you can add a calculated column to 'Calendar' Table to mark all your working days.
Workday =
IF (
WEEKDAY ( 'Calendar'[Date], 2 )
IN { 1, 2, 3, 4, 5 }
&& NOT 'Calendar'[Date] IN VALUES ( 'Holiday Table'[Date] ),
"Workday",
"Weenkends/hoiliday"
)
Then, you can try the following formula to calculate the end date.
End Date =
CALCULATE (
MAX( 'Calendar'[Date] ),
FILTER (
'Calendar',
NETWORKDAYS (
MAX ( 'Table'[Date] ),
'Calendar'[Date],
1,
VALUES ( 'Holiday Table'[Date] )
) = 10
&& 'Calendar'[Workday] = "Workday"
)
)
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @hemendranath
You need a ‘Holiday Table’ that lists all your holiday so that you can add a calculated column to 'Calendar' Table to mark all your working days.
Workday =
IF (
WEEKDAY ( 'Calendar'[Date], 2 )
IN { 1, 2, 3, 4, 5 }
&& NOT 'Calendar'[Date] IN VALUES ( 'Holiday Table'[Date] ),
"Workday",
"Weenkends/hoiliday"
)
Then, you can try the following formula to calculate the end date.
End Date =
CALCULATE (
MAX( 'Calendar'[Date] ),
FILTER (
'Calendar',
NETWORKDAYS (
MAX ( 'Table'[Date] ),
'Calendar'[Date],
1,
VALUES ( 'Holiday Table'[Date] )
) = 10
&& 'Calendar'[Workday] = "Workday"
)
)
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.