Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.