Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hey all,
I am able to get my graph to show EITHER whole numbers OR %. Is there a way to get both shown on the same graph?
Thank you!
Solved! Go to Solution.
Ok, that's fine. You will need to create some measures- similar to the following- use whatever your actual table and field names are.
Hi, you may use this DAX sample from my report.
Request Count & % of Total =
VAR CurrentCount = COUNT('table'[Request ID])
VAR TotalCount = CALCULATE(
COUNT('table'[Request ID]),
ALLSELECTED() --Adjust your filter modifier accordingly
)
VAR Percentage = DIVIDE(CurrentCount, TotalCount, 0)
RETURN
CurrentCount & " (" & FORMAT(Percentage, "0.0%") & ")"
and add it in
Hi @e175429 ,
Please see the attached .pbix file. You can do this by creating an additional measure and putting it in the Detail section of Data Labels on your visual. Please let me know if you have any questions about this approach.
So, i don't have a number column like your sales column, I just have a column of user names like this:
And to create the graph I just put the user name colum on the x and y axis to see how many each user did:
So I can't sum a column of names.
Ok, that's fine. You will need to create some measures- similar to the following- use whatever your actual table and field names are.
My measures:
My graph:
Any idea why they all say 100%?
You just need to add ALL() around 'individ Project2'
count of all = COUNTROWS(ALL('individ Project2'))
Thank you for your assistance!
You're welcome! Please "Accept as solution" if it has solved the issue.
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.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |