Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 details with creation date.
Scheme start date is different from Membership start date, becuase employee can join the scheme any date after scheme start date.
Usage creation date is when a Member makes use of policy takes any medical, diagnosis or mental health services.
In this scenario can we establish relationship between date columns? How do I proceed further in data modeling?
Note: Company_Code = Scheme_Code
Download dataset using below link.
Solved! Go to Solution.
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])
)
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])
)
Can you please perhaps explain your probem again. I do not understand what is the problem.
I think that a usage is related to the membership via the REF_NUM field. (I find some REF_NUM values it in both tables columns).
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 37 | |
| 28 | |
| 27 |