Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have two tables with contacts from two different sources and I created a third table so I could merge the contacts based on their URL since the url for each contact is the same for both sources, this way I can see what contacts from the second source are the same as the ones in the first source.
Connections
This is the model view of my data where K2 Data is the first source and Connected_data is the second source and these are merged in Connected_data.
For my bar chart I created the measure:
@al0981 - if Connected data is the table that has the contacts from both sources you will need to use this for the slicer.
You will also need to make sure you use a column that is populated with data that comes from both tables in the slicer. My suspicion is that the column that you have used from Connected_data only has data from this table, and the rows for K2 are blank, hence why your filter is only applied to half the visual.
If that's not the case, it's going to be your relationships, and specifically it will be the fact that the relationship from CRM Data to Stage only works in one direction. You can try editing your measure to something like the below:
Total Data of Phases =
CALCULATE(
COUNTROWS(Distinct(Union(
VALUES('K2 Data'[id]),
VALUES(Connected_data[id])
))), CROSSFILTER( CRM_data[relationship column], Stage[relationship column], BOTH)
If this works for you, please accept it as the solution.
Hi Mark,
The Connected_data table is the merge of the other 2 tables based on the URL of the contats, so this one will have 10 contacts that are coincident to the two tables while the other tables have hundreds of contacts.
I tried changing the relationships from connected_data - CRM_data to Connected_data - K2 Data and trying that measure but I just get the contacts from K2 data and the contacts from the other table don't show up at all.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |