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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
mmparvez
Frequent Visitor

Zero value as average

I have a table 

mmparvez_0-1700638187033.png

Which i want to show as Visualisation Table with zero value as average per product catagory.

Expected visualization 

mmparvez_1-1700638343882.png

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

3 REPLIES 3
mm_parvez
New Member

Follow steps:

1. Replace Value '0' to 'null'. 

2. Create a New Measure 

 

Measure = IF( SUM('Table'[Value]) = 0, CALCULATE(AVERAGEA('Table'[Value]), REMOVEFILTERS('Table'[Customer])), SUM('Table'[Value]) );

Ahmedx
Super User
Super User

pls try this

Screenshot_2.png

AnalyticPulse
Super User
Super User

use if condition to achive this.

here is example:
AverageAmount =
IF(
SUM('YourTable'[Amount]) = 0,
AVERAGE('YourTable'[Amount]),
SUM('YourTable'[Amount])
)

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.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors