Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
93 | |
60 | |
43 | |
35 | |
34 |