Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi, I have a column with % values. I need to show this column in a table visual, but not doing any aggregation.
I want to show a databar for each % value, problem is Power BI only shows the databar conditional formating if I summarize the values (sum, count, etc) but I need to see the values exactly as they come from the database. I need something like the image
Can anyone help?
Hi @Ramon_Mac ,
Create a measure as below:
Measure = SELECTEDVALUE('Task'[PercentValue])
Put it in the table and then turn on the data bars on this measures. It gives you what you need without any aggregations.
If it helped, mark it as an accepted solution.
Regards,
Loran
I already tried it and doesn't work, I don't know the reason but it don't show all the values, only 30% and 0%.
Aha Okay.
The reason is that you have same records for your tasks. for example you have 2 records for Task1
Then SELECTEDVALUE() does not work in this case becasue there are 2 records for Task1. So the measure with SELECTEDVALUE would be blank and it does not show you the related number for that.
But If you put another column of your table that could result in showing you both of the Task1 records, the above solution would work.
Assume you have the below table. If you put only TaskName and the created measure, then it does not show you the task1. But if you add Group column, it would show you the task1 record.
TaskName | Group | PercentValue |
Task1 | A | 10% |
Task1 | B | 20% |
Task2 | C | 15% |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
107 | |
56 | |
52 | |
48 | |
40 |