Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
87 | |
82 | |
71 | |
49 |
User | Count |
---|---|
143 | |
123 | |
107 | |
61 | |
55 |