Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi,
We recently started using Power Bi and while doing some tests i've come across unexpected results when aggregating data between 2 tables with One to Many Relationship.
This is a part of our model:
When creating a matrix with count of id_pessoa by segmento_valor, i get strange values per row, and a total row count equal to the total of rows from table pessoa.
We only get the correct results when we build a matrix with count of person_id (scoring table) by segmento_valor, but we can't accept this solution, since we want to hide the tables keys from the users.
When creating a table view, with the fields id_pessoa and segmento_valor, i can confirm that the relationship is working (id_pessoa is duplicated for each row of the scoring table).
Can someone explain what are we doing wrong?
Thanks.
Solved! Go to Solution.
hi, @luisc
This is a measure totals problem. Very common. See this post about it
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
For your case, when you count of id_pessoa (pessoa table) , It likes a measure as below:
Output = var _table=ADDCOLUMNS(scoring,"_id_pessod",RELATED(pessoa[id_pessoa])) return COUNTAX(_table,[_id_pessod])Result:
Regards,
Lin
hi, @luisc
This is a measure totals problem. Very common. See this post about it
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
For your case, when you count of id_pessoa (pessoa table) , It likes a measure as below:
Output = var _table=ADDCOLUMNS(scoring,"_id_pessod",RELATED(pessoa[id_pessoa])) return COUNTAX(_table,[_id_pessod])Result:
Regards,
Lin
Thanks for the help and the posts.
Was really hoping that this was a problem with the model, since this is something that the users used to do in our other BI.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 44 | |
| 42 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 71 | |
| 66 | |
| 33 | |
| 32 | |
| 32 |