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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hey all ,
Fairly new to power bi.
I have a colum called hrs which lists the number of hours.
The values in this column ranges from 0-80.
I essentailly want to create a visual showing percentage of rows in that colum which are less than or equal to 1.
I was going to use a pie chart to demonstrate this.
Is anyone available to point me in the right direction of doing this.
Thanks.
Solved! Go to Solution.
You can try to create a calculated column and use it as the legend of the bar chart. In the Values field, set count of category.
category = IF('Table'[HRs]>1,"More than 1 Hour","Less than 1 Hour")
You can try to create a calculated column and use it as the legend of the bar chart. In the Values field, set count of category.
category = IF('Table'[HRs]>1,"More than 1 Hour","Less than 1 Hour")
You can switch the Detail labels to have a Percent of total label style and perhaps do binning or grouping to group 0 and 1?