Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all,
I am using a visual to show average times per category (bars) as well as an overall average across ALL categories (dotted line). Please see screenshot below.
I am using a Measure to calculate the overall average (dotted line):
Overall Avg = CALCULATE(SUM('Table1'[Work Time])/COUNT('Table1'[Number]),ALLSELECTED('Table1'))
The calculation works fine. However, the problem is that the ALLSELECTED() function always returns also empty categories (see Category D). Especially when there are more empty categories, this looks really ugly.
I already tried using ALL(), ALLEXCEPT(), etc. instead of ALLSELECTED() without success. Also, "Show items with no data" is disabled.
Any ideas how to fix that? Thanks a million!
@Anonymous Create a separate measure for total work time:
Total Work Time = SUM ( 'Table1'[Work Time] )
The try this:
Overall Avg =
CALCULATE (
DIVIDE ( [Total Work Time], COUNT ( 'Table1'[Number] ) ),
FILTER ( VALUES ( 'Table'[Category] ), [Total Work Time] <> 0 )
)
Here is a visual from my dummy data:
@AntrikshSharma Thank you for your help.
If I use your approach, I get the average value per category instead of an overall average across the categories (see below). The empty category is not visible now!
Not sure if this is important, but the value of my cateogries is not actually 0. Instead, the "empty" categories are hidden due to some applied filters.
@amitchandak Thank you for your fast reply.
Unfortunately, this doesn't work as well. Same result.
In addition, I want to use this Measure for different "Category" columns. Hence, it should be as generic as possible and I intended not to use the "Category" column itself in the Measure. It might be possible workaround of course... 🙂
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 |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
9 |