Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I have a matrix where I want to show Sales values and the Total, but the Total is blank.
The measure is:
Solved! Go to Solution.
Hi @Anonymous
what are you slicing by in this table/matrix visual? Let's assume each row in this table/matrix visual represents a product then
SumSalesLegal =
SUMX (
VALUES ( 'Product'[Product Name] ),
CALCULATE (
IF (
[Confirmed Order] = 1,
CALCULATE (
SUM ( Query2[Amount] ),
FILTER ( Kontoplan, Kontoplan[Account Number] = 1510 )
) * 1,
0
)
)
)
I believe it's because it's lacking of row level iteration. We need build it up using SUMX. Alternatively, we could add a calculated column as opposed to a measure.
I encountered the same issue today; got resolved by either way.
Hi @Anonymous
what are you slicing by in this table/matrix visual? Let's assume each row in this table/matrix visual represents a product then
SumSalesLegal =
SUMX (
VALUES ( 'Product'[Product Name] ),
CALCULATE (
IF (
[Confirmed Order] = 1,
CALCULATE (
SUM ( Query2[Amount] ),
FILTER ( Kontoplan, Kontoplan[Account Number] = 1510 )
) * 1,
0
)
)
)
Hi! I modified the product and it worked! Thanks! Can you help me understand how it is working?
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |