Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All,
I just had a quick question, since I could not find this particular info while searching. Is it possible to show data as % in 1 chart based on the total of another? Both charts are coming from the same Data Table.
the example below, I would like to show in chart B:
for Week Start, 7 = 34 /841 % = 4 % and so on.
Thank you for your time and consideration.
Solved! Go to Solution.
Hi @Grimoire ,
Based on your description, you can customize the display of the datalable
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:
Create a measure
Measure = FORMAT(SELECTEDVALUE('Table'[Week start])/SELECTEDVALUE('Table'[Released Week]),"0.0%")
Apply the meaure to the datalable value
Final output
If your two tables are separate, you will need to pass the
Released Week and Week start to create a one-to-one relationship between them.
Measure 2 = FORMAT(SELECTEDVALUE('Chart B'[Value])/SELECTEDVALUE('Chart A'[Value]),"0.0%")
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Grimoire ,
Based on your description, you can customize the display of the datalable
Here some steps that I want to share, you can check them if they suitable for your requirement.
Here is my test data:
Create a measure
Measure = FORMAT(SELECTEDVALUE('Table'[Week start])/SELECTEDVALUE('Table'[Released Week]),"0.0%")
Apply the meaure to the datalable value
Final output
If your two tables are separate, you will need to pass the
Released Week and Week start to create a one-to-one relationship between them.
Measure 2 = FORMAT(SELECTEDVALUE('Chart B'[Value])/SELECTEDVALUE('Chart A'[Value]),"0.0%")
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.