Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
jeffreykeryk
Helper I
Helper I

Average Calculation by distinct count

Average = Sum / Count

 

For a pivot visualization, can I extend the Values summerization to Average = Sum / Distinct Count?

 

Thanks in advance!

 

Jeff Keryk

1 ACCEPTED SOLUTION
MattAllington
Community Champion
Community Champion

yes, just write a custom measure as follows

 

myAverage = divide(sum(table[Column]),distinctcount(table[Column]))



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

View solution in original post

2 REPLIES 2
MattAllington
Community Champion
Community Champion

yes, just write a custom measure as follows

 

myAverage = divide(sum(table[Column]),distinctcount(table[Column]))



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Hey Matt - It's funny... I have been doing DAX measures in Power Pivot for some time. With PBI, I am working with a new tool and I seem to forget what I already know!

 

Thanks for your help; it was perfect.

Jeff Keryk

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors