Forum Discussion
Anonymous
4 years agoNot applicable
Combine data from two tables into two different columns
Hi, I want to create two measures that i can drag into a table visual against a common column. The data is as following Table 1: Table 2 Final Desired Table- I wish to dr...
- Anonymous4 years ago
Hi Anonymous ,
Please refer to my pbix file to see if it helps you.
The first way:
Using Tahreem24 's method: Create relationshipAnother way: Do not need to create relationships.
Create a measure:
Measure = CALCULATE ( MAX ( 'Table'[Segment] ), FILTER ( ALL ( 'Table' ), 'Table'[CONTACT_ID] = SELECTEDVALUE ( Table_1[contact_id] ) ) )Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Tahreem24
Super User
4 years agoAnonymous You need to have a relationship between these two tables based on common key (let's say Contact_ID) then you can drag them all together.