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
I have a visual in Power BI with a table on top and chart below it. On the table, I can show the % as a % of Column but in the Chart it is showing the % as a % of Grand Total for the 2 Years I have selected. How can I show the %'s in the chart to mirrow what is in my table (as of % of total for each individual year)? I have attached a screenshot of what I have. Thanks!
Solved! Go to Solution.
@Anonymous ,
Please modify your measure using dax below:
Result = CALCULATE ( SUM ( Donation_Distributions[Amount] ), ALLEXCEPT ( Table, Table[Payment Type], Table[Year] ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
Seems like "%GT Donation for Pd" is a measure, this issue should be related to the measure. Could you share the dax code of the measure?
Regards,
Jimmy Tao
@Anonymous ,
Please modify your measure using dax below:
Result = CALCULATE ( SUM ( Donation_Distributions[Amount] ), ALLEXCEPT ( Table, Table[Payment Type], Table[Year] ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.