Forum Discussion
Multiple table relationship
- Anonymous2 years ago
Hi Anonymous ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a SLA table.
SLA Table = UNION(DISTINCT('calculated table'[Value]),DISTINCT('Table'[SLA]))(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
You can create a Dim SLA table where the SLA column contains all of the SLAs, and then use this table as a 1-terminal table to establish a 1-to-many modeling relationship with the other three tables, and then place the fields from the Dim SLA table on the visual object.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous2 years agoNot applicable
We are unable to put all SLAs in a single table as one table is calculated table from PBI. so there is no edit query option for that. Not sure how to append data with another SLA table data
- Anonymous2 years agoNot applicable
Hi Anonymous ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a SLA table.
SLA Table = UNION(DISTINCT('calculated table'[Value]),DISTINCT('Table'[SLA]))(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous2 years agoNot applicable
It worked. I am able to get all 3 columns in a single table. So the duplicate columns issue gone from the output table. Thank you so much !!!