Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
93 | |
86 | |
76 | |
64 |
User | Count |
---|---|
138 | |
113 | |
107 | |
98 | |
92 |