Forum Discussion
Sum by column
- 6 years ago
Hi DSmith4 ,
Unfortunately, this might not be as straight forward as you might have thought. My recommendation is to create a DAX table with like this:
SummaryTable = SUMMARIZECOLUMNS('data'[Vendor], "Totals", SUM('data'[Amount]))This table will be evaluated at refresh/load and is therefor not dynamic! You can create a relationship from SummaryTable[Vendor] to 'data'[Vendor] (1 to many) and filter on the column Totals of the SummaryTable above.
Does that suit your needs? If so, please let me know!
Kind regards
Djerro123
-------------------------------
If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.
Keep those thumbs up coming! 🙂
Hi DSmith4 ,
Unfortunately, this might not be as straight forward as you might have thought. My recommendation is to create a DAX table with like this:
SummaryTable = SUMMARIZECOLUMNS('data'[Vendor], "Totals", SUM('data'[Amount]))This table will be evaluated at refresh/load and is therefor not dynamic! You can create a relationship from SummaryTable[Vendor] to 'data'[Vendor] (1 to many) and filter on the column Totals of the SummaryTable above.
Does that suit your needs? If so, please let me know!
Kind regards
Djerro123
-------------------------------
If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.
Keep those thumbs up coming! 🙂
Thank you! This has worked.
By chance, do you know how to filter the page on a measure?
I have created a new measure and trying to filter the page.
Thanks