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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

I want to Average multiple columns but ignoring any zeroes or blanks

KrtinM_0-1644468217605.png

Hello Everyone, 

I am looking for a solution as shown in the table above in PowerBI, I want to create a new column that prints average of these 4 columns but only if they have a non-zero/non blank value. I.e. the answer for first row should not be ((0+0+5+0)/4) instead just (5/1) since rest of the columns are empty. Any replies would be much appreciated, thanks.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try a new column like

 

divide([A] + [B] + [C] +[D], if(coalesce([A],0) <>0,1,0) + if(coalesce([B],0) <>0,1,0) + if(coalesce([C],0) <>0,1,0) +if(coalesce([D],0) <>0,1,0))

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Worked like a charm, thanks heaps @amitchandak... This was my first ever post on the community page, following such a quick and accurate response, I'm going to be more active here from now on. You're a legend.

amitchandak
Super User
Super User

@Anonymous , Try a new column like

 

divide([A] + [B] + [C] +[D], if(coalesce([A],0) <>0,1,0) + if(coalesce([B],0) <>0,1,0) + if(coalesce([C],0) <>0,1,0) +if(coalesce([D],0) <>0,1,0))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors