Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Handle Inactive Relationship for Count Measures

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.

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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

webportal
Impactful Individual
Impactful Individual

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.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.