Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |