Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
So I have this table output:
So I have a delivery with multiple materials.
But some of these materials (see for example the yellow) have 2 log dates.
The correct Quantity for this material would be 2 and not 4 (when I would take out the date)
Made QCorr like :
Solved! Go to Solution.
Opsss... I copied badly the measure:
QCorr = SUMX(VALUES('Table'[Material]),[sumSc])
Hi @rpinxt
I have created an auxiliary sum to get the maximum value in case of several rows:
sumSc = CALCULATE(MAX('Table'[Quantity]), FILTER(ALLEXCEPT('Table','Table'[Material]), 'Table'[LogDate]=MAX('Table'[LogDate])))
And now, in QCorr:
QCorr = SUMX(VALUES('Table'[Material]),IF(DISTINCTCOUNT('Table'[Material])>1,[sumSc],SUM('Table'[Quantity])))
You don't need any "MaxLog" column
Thanks @mlsx4 but look on the second row....it says 4 and should be 2.
Yes your total of 102 is correct but if you sum all the line separate you will again get 122.
Opsss... I copied badly the measure:
QCorr = SUMX(VALUES('Table'[Material]),[sumSc])
Yes thanks @mlsx4 this seems to work.
But you need to remove the date colunns.
This is part of a bigger thing.
I have more countries, deliveries and months etc.
I should all go into a stacked column chart.
With periods on the x-axis where I link a date field (maxlog) to a date table (auto).
Wondering if it will give the correct output.
But will test. Thanks for this!
I think you shouldn't include those columns in the table or they will be added to the sum. If you just leave delivery, material and qcorr, it should work.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 37 | |
| 28 | |
| 27 |