Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I am trying to replicate this Matrix in Power BI:
I can create the subtotal percentage and the counts. But, when I include the months into Columns, then % subtotals no longer make sense.
Here is my dax to calculate the % Subtotal:
%Total (Count) =
CALCULATE ( DISTINCTCOUNT( (Query1[item_No] ) )
/ CALCULATE (
DISTINCTCOUNT( Query1[item_No] ),
ALLEXCEPT ( Query1, Query1[SubCategory])
))
Thank you in advance for any of you, who are willing to help. I am but a humble servant.
Solved! Go to Solution.
I was able to figure it out. Just needed to add Month into the allexcept statement
I was able to figure it out. Just needed to add Month into the allexcept statement