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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Ramees_123
Helper IV
Helper IV

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
v-yiruan-msft
Community Support
Community Support

Hi @Ramees_123 ,

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

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @Ramees_123 ,

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

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.