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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
hi
I have done an histogram with 5 calculated measure like this :
Battery health < 20% =
COUNTROWS(
FILTER(
battery_all,
battery_all[BatteryHealthValue] <= 0.2
)
)
it represent x axis
on y axix it's the number of devices (Name field in my table)
but i dont use this field in my histogram
i want if it is possible to display the list of devices in a table view when I click on one of the histogram bar?
thanks
Solved! Go to Solution.
Hi @jip34 - Your measure calculates the count of rows in the battery_all table where the BatteryHealthValue is less than or equal to 0.2. This is a good starting point for your histogram.If your histogram categories are dynamic, consider grouping them using measures
Battery health < 20% =
COUNTROWS(
FILTER(
battery_all,
battery_all[BatteryHealthValue] <= 0.2
)
)
Click on a histogram bar (e.g., Battery health < 20%).
Check the Table visual; it should display only devices (Name) falling within the selected category.
Proud to be a Super User! | |
Hi @jip34 - Your measure calculates the count of rows in the battery_all table where the BatteryHealthValue is less than or equal to 0.2. This is a good starting point for your histogram.If your histogram categories are dynamic, consider grouping them using measures
Battery health < 20% =
COUNTROWS(
FILTER(
battery_all,
battery_all[BatteryHealthValue] <= 0.2
)
)
Click on a histogram bar (e.g., Battery health < 20%).
Check the Table visual; it should display only devices (Name) falling within the selected category.
Proud to be a Super User! | |
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 44 | |
| 40 | |
| 29 | |
| 19 |
| User | Count |
|---|---|
| 200 | |
| 126 | |
| 103 | |
| 70 | |
| 53 |