Forum Discussion
anilkumarpoda
Resolver I
3 years agoCan we establish relationship between different date columns?
Hi, in a health policy database there are 3 tables Scheme - With scheme details along with start date. Membership - Employe Membership details with start date. Usage - Member ship utilization deta...
- 3 years ago
I got the answer from another forum. We can create a date table and map date column to date columns in other tables. But only one connection will be active. To use inactive connections in DAX we can use USERELATIONSHIP() function.
Total RP by Start Date = CALCULATE( [Total RP], USERELATIONSHIP('RP'[WorkflowStartedDate], Dates[Date]) )
anilkumarpoda
Resolver I
3 years agoI got the answer from another forum. We can create a date table and map date column to date columns in other tables. But only one connection will be active. To use inactive connections in DAX we can use USERELATIONSHIP() function.
Total RP by Start Date =
CALCULATE(
[Total RP],
USERELATIONSHIP('RP'[WorkflowStartedDate], Dates[Date])
)