This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
I have an Employee table with Joining Date and Emp ID.
I also have a DimDate table with date values.
Note: The Joining Date in Employee Table and the Date field in DimDate table have only InActive Relationship.
I have a year slicer in my report connected to DimDate table - Date field.
Now I need the count of employess who joined on that selected year mentioned in slicer.
How to do it. Please help.
Solved! Go to Solution.
Hi @Anonymous ,
You can create a measure as below:
Count of employees =
CALCULATE (
DISTINCTCOUNT ( 'Employee'[Employee ID] ),
USERELATIONSHIP ( 'Employee'[Date], 'DimDate'[Date] )
)
In addition, you can refer the content in the following links to achieve it.
Power BI – Using inactive relationships in a measure
UseRelationship or Role-Playing Dimension; Dealing with Inactive Relationships in Power BI
Best Regards
Hi @Anonymous ,
You can create a measure as below:
Count of employees =
CALCULATE (
DISTINCTCOUNT ( 'Employee'[Employee ID] ),
USERELATIONSHIP ( 'Employee'[Date], 'DimDate'[Date] )
)
In addition, you can refer the content in the following links to achieve it.
Power BI – Using inactive relationships in a measure
UseRelationship or Role-Playing Dimension; Dealing with Inactive Relationships in Power BI
Best Regards
Build a matrix visual.
Rows: Year
Values: distinct count of employee ID
This is assuming the date table is related to the employees table by joining date.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 19 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 24 | |
| 20 | |
| 20 | |
| 19 | |
| 19 |