Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have the following calendar table where I have the working days per month. I want to get the total work days per month and use that value in another measure.
To give you some background, I'm dividing the number of estimated work days to complete a project by the number of work days in a month to get the number of resources needed for the next year. I know it can't be that difficult, but I'm fairly new to Power BI.
Solved! Go to Solution.
In dax you may create a newcolum and use this
WorkDayMOnth =
var month = month(dimCalendar[Date])
var year = year(dimCalendar[Date])
return
CALCULATE(COUNT(dimCalendar[Date]),filter(all(dimCalendar[Date]),YEAR(dimCalendar[Date])=year && MONTH(dimCalendar[Date])=month && WEEKDAY(dimCalendar[Date]) in {2,3,4,5,6}))
In dax you may create a newcolum and use this
WorkDayMOnth =
var month = month(dimCalendar[Date])
var year = year(dimCalendar[Date])
return
CALCULATE(COUNT(dimCalendar[Date]),filter(all(dimCalendar[Date]),YEAR(dimCalendar[Date])=year && MONTH(dimCalendar[Date])=month && WEEKDAY(dimCalendar[Date]) in {2,3,4,5,6}))
Thank you.
How do I account for holidays in the column? The 'Work Time' column designates work days - 1 for a work day 0 for holiday or weekend.
Also, I need to take the value in the WorkDayMonth column and divide it into a measure - I'm not quite sure how to do that.
Here is the measure I'm working with -
AvailabilityDays = Divide(SUM(Availability[Capacity])-(SUM('Engagements By Day'[Engagement Total Work])+sum('Assignments By Day'[Assignment Total Work])),6.8) / "number of working days"
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 38 | |
| 31 | |
| 30 |