Forum Discussion

pjm1181's avatar
pjm1181
New Member
2 years ago
Solved

Return data from table 1 , using ID from table 2 that exists in table 1

Apologies if this has been answered, I’ve tried searching, and part of the issue is that I don’t know how to describe my issue! Hence the poor title   I have 2 tables, simplified above. Tab...
  • pjm1181's avatar
    pjm1181
    2 years ago

    thanks, i somewhat managed to solve it by making a bridging table, witout any DAX code as that was my original intnetion. but if anybody has better ideas, more than happy to try

  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi  
    Thanks for amitchandak !
    Here I would like to add your method, let me give you a detailed example:

    I create 2 relationship between the two table:

     

    Then add 2 calculate column2 in table2:

     Column1 = RELATED(Table1[Owner])Column2 = CALCULATE(SELECTEDVALUE(Table1[Owner]),USERELATIONSHIP(Table1[Risk ID],Table2[Linked Risk ID]),REMOVEFILTERS(Table1)) 

    The result is as follow:

     

    Best Regards

    Zhengdong Xu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

     
    

     

    pjm1181