This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Dear all,
I am trying to have a measure that calculates the following:
Thanks so much for everyones help!
Solved! Go to Solution.
Thanks a lot @Anonymous ! In the meantime I use three different measures to get the desired calculation.
Might not be elegant, but worked out as well 🙂
Thanks a lot @Anonymous ! In the meantime I use three different measures to get the desired calculation.
Might not be elegant, but worked out as well 🙂
Hi @PBI-Newbie ,
Please have a try.
Networkdays = CALCULATE(
COUNTROWS('Calendar'),
FILTER('Calendar',
'Calendar'[Date] >= MIN('Date'[Date]) &&
'Calendar'[Date] <= MAX('Date'[Date]) &&
NOT('Calendar'[IsHoliday])
)
)Working Time Elapsed = [Networkdays] / CALCULATE(
COUNTROWS('Calendar'),
FILTER('Calendar',
YEAR('Calendar'[Date]) = YEAR(MAX('Date'[Date])) &&
MONTH('Calendar'[Date]) = MONTH(MAX('Date'[Date])) &&
NOT('Calendar'[IsHoliday])
)
)
This formula calculates the networkdays of the whole month of the latest date selected in the slicer.
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |