Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
hello - i have transaction table and a master table. The master table is shown below. The transaction table has Account and Amount and is linked to the master table on Account (many to many cardinality).
How do i create a calculation such that when I look at Amount cateogy by, the amount adds up to the grand total. For example, if the transaciton table has one line for Account 1234 with Amount 100, it should be considered as 200 in the grand total. Any assitance wil be appreciated.
| Category | Account |
| Category A | 1234 |
| Category A | 4567 |
| Category A | 4459 |
| Category B | 1234 |
| Category B | 4567 |
Solved! Go to Solution.
Hi @Anonymous ,
We can try to create measure using following DAX to meet your requirement.
Total =
COUNTROWS (
FILTER ( ALL ( TableA ), [Account] = SELECTEDVALUE ( 'Table'[Account] ) )
)
* SUM ( 'Table'[Amount] )
If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
BTW, pbix as attached.
Best regards,
Community Support Team _ DongLi
If this post helps, then please consider Accept it as the solution to help the other members find it more
Hi @Anonymous ,
We can try to create measure using following DAX to meet your requirement.
Total =
COUNTROWS (
FILTER ( ALL ( TableA ), [Account] = SELECTEDVALUE ( 'Table'[Account] ) )
)
* SUM ( 'Table'[Amount] )
If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
BTW, pbix as attached.
Best regards,
Community Support Team _ DongLi
If this post helps, then please consider Accept it as the solution to help the other members find it more
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 50 | |
| 34 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 94 | |
| 77 | |
| 41 | |
| 26 | |
| 25 |