Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
@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))
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.
@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))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 9 | |
| 8 | |
| 7 |