This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello all,
I would like to calculate the sum of the respective plants via the customer in PowerBI. (Plant A1 => Customer 2 = 250)
Unfortunately, I am still quite new to PowerBI and need help, as I don't know how to do it. The SumX formula did not work for me, so I am quite confused how i can calculate a something like a sumif with two conditions in PowerBI.
Thank you very much for your help.
Best Regards
Sandro
Solved! Go to Solution.
@Anonymous Well, you could create a calculated table like:
Table = SUMMARIZE('Table',[Plant],[Customer],"Sales",SUM('Table'[Sales]))
Thank you for your fast response/help.
The suggestion worked. But Is there a possibility to get the resulting values in a seperate row? As I want to use the resulting values in a Slicer for numeric ranges?
For example I just want to see customers which sales are higher than 300 in the visualization.
Thank you!
Kind regards
Sandro
@Anonymous Well, you could create a calculated table like:
Table = SUMMARIZE('Table',[Plant],[Customer],"Sales",SUM('Table'[Sales]))
@Anonymous Try:
Column =
VAR __Plant = [Plant]
VAR __Customer = [Customer]
RETURN
SUMX(FILTER('Table', [Plant] = __Plant && [Customer] = __Customer),[Sales])
Measure =
VAR __Plant = MAX([Plant])
VAR __Customer = MAX([Customer])
RETURN
SUMX(FILTER('Table', [Plant] = __Plant && [Customer] = __Customer),[Sales])
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 37 | |
| 33 | |
| 23 | |
| 23 |