Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DSmith4
Helper II
Helper II

Sum by column

Hello,

 

I have a column, Vendor Name, and would like to take the sum of this column by each vendor. I am trying to do a formula like

 

Vendor Sum = CALCULATE(SUM('data'[Amount]),'data'[Vendor])

 

I am wanting to do this so I can create a filter on the page to only show Vendors with a balance of 100 or greater.

 

Thanks for your help

1 ACCEPTED SOLUTION
JarroVGIT
Resident Rockstar
Resident Rockstar

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! 🙂





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
JarroVGIT
Resident Rockstar
Resident Rockstar

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! 🙂





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.