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 again I am trying to do row by row multiplicaiton using measures, and I end up with the wrong sum.
The first expression below, Sales_Uncleaned, all seems to work, the correct sum is achieved, on total and on all aggregated categories.
Hi @1up
You'll want to wrap the original calc in a sumx...
Sales_Uncleaned:= SUMX (
'Combined',
DIVIDE(max('Combined'[Sales_2019]),max('Combined'[Potential_2019]))
)
You may have to modify the query a bit as I am not sure what your original table looks like.
-Paul
Thanks for the reply.
I tried, and I get wrong sums unfortunately for the starting expression, using this code. Now the %-ages are in the thousands. On individual base category it works though. I wrote as below;
Perhaps I should add, I have two categories in the table. One column is a unique category, let's call them A, B, C, D, E etc. The other one is a group which includes certain categories, so let's say Cat1 includes (A, C), Cat2 includes (B, D, E).
Summarizing on the aggregated Cat#-categories, gives the wrong result, and on total sum...