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
Measure written down Helped me get the Percentages Changes on overall Amount i.e. this is being computed at the 3 years cumulative
____________________________________________________________________________
Rev_From_CU_Trial_Denom =
var mysel = SELECTEDVALUE('AFR Table'[GN])
return
CALCULATE(SUM('AFR Table'[Amount]), FILTER(ALL('AFR Table'), 'AFR Table'[GN] = mysel), 'AFR Table'[Form] = "Schedule A")
_____________________________________________________________________________________
% Category =
DIVIDE([Revenue], [Rev_From_CU_Trial_Denom])
_______________________________________________________________
But now I would like to have the measure in a way that
% Category, should do the Changes based on GN Revenue and not only overall revenue as you can see % Category Changes is not equals to 100%
I want the That 100% break up in the % Category Measure
Hi @mohammedkhan ,
We often encounter incorrect subtotals of the matrix, I found two similar posts, you can refer to
Incorrect Subtotal and Grand total value of measure (division)
Measure showing wrong subtotal
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.