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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I want to create a table with how many employees are available to work each day. I have a table with all the dates:
Calendar Relative = CALENDAR( TODAY()-3650, TODAY()+3650 )
I have another table with all employees listed as well as their starting date and ending date (10 years in the future if they are employed ongoing)
I have a column with the following DAX, but I know this isn't quite what I need.
Hi, @DJTentman
You can try the following methods.
Sample data:
Measure =
CALCULATE ( COUNT ( 'Table'[Employee ID] ),
FILTER ( ALL ( 'Table' ),
[Start Date] <= SELECTEDVALUE ( 'Date'[Date] )
&& [End Date] >= SELECTEDVALUE ( 'Date'[Date] ) ) )
+ CALCULATE ( COUNT ( 'Table'[Employee ID] ),
FILTER ( ALL ( 'Table' ),
[Start Date] <= SELECTEDVALUE ( 'Date'[Date] )
&& [End Date] = BLANK () ) )
Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This makes a lot of sense. Thanks. I ended up with this formula:
Thanks, that's been helpful. So, I'm trying to create the number of employee/days per week for each date in the list. This is the DAX I'm using:
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.
User | Count |
---|---|
9 | |
8 | |
6 | |
4 | |
3 |