This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 10 | |
| 6 | |
| 6 | |
| 6 | |
| 5 |