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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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?
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |