Forum Discussion
Sachid
7 years agoRegular Visitor
Dates Table Relationship
I have A table whenr in there are two date columns Joining_Date and leaving_Date with leaving date with null values for the active people. I have created A date table and want to map a relation ship...
- 7 years ago
Hi Sachid
You may link the tables and then create measures with USERELATIONSHIP Function.For further,please refer to this article.
JoinedPeople = CALCULATE(COUNT(Table1[Name]),USERELATIONSHIP('Date'[Date],Table1[Join Date]),Table1[Status]="Active")LeftPeople = CALCULATE(COUNT(Table1[Name]),USERELATIONSHIP('Date'[Date],Table1[Left Date]),Table1[Status]="Active")Regards,
v-cherch-msft
Microsoft Employee
7 years agoHi Sachid
You may link the tables and then create measures with USERELATIONSHIP Function.For further,please refer to this article.
JoinedPeople = CALCULATE(COUNT(Table1[Name]),USERELATIONSHIP('Date'[Date],Table1[Join Date]),Table1[Status]="Active")
LeftPeople = CALCULATE(COUNT(Table1[Name]),USERELATIONSHIP('Date'[Date],Table1[Left Date]),Table1[Status]="Active")
Regards,