Forum Discussion
Anonymous
5 years agoNot 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 ...
- Anonymous5 years ago
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
Anonymous
5 years agoNot 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