Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
91 | |
75 | |
65 | |
49 | |
36 |
User | Count |
---|---|
115 | |
89 | |
80 | |
59 | |
40 |