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
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:
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.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |