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
RichOB
Post Partisan
Post Partisan

Removing zeros from a measure

Hi, I'm looking to remove the zeros from my measure so the graph only takes into account the quarters with data.

 

Measure I used to combine the regions:

RegDiv = [North] + [SouthW] + [SouthE]
 
Measure I used to divide the above by 3:
RegAvg = [RegDiv] / 3

 

As Q4 does not have North data, it's still dividing by 3 which I do not want. Is there a way to not include blank or zero entries in the calculation?

Screenshot 2024-08-05 095441.png

 

For more context, before I got to the line graph above, I had to separate the regions individually from the column as the line graph was not allowing me to add the Region AND the Total Score(averaged) line...but if I separated them individually it did. Also, if there's any easier way I'm keen to hear it. The data is structured like this FYI:

 

RegionScore
South East4
South West 5
North6

 

Thanks for your help

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @RichOB ,

 

Thanks @bhanu_gautam  for the quick reply. Please allow me to offer an alternative idea:

(1) This is my test data.

vtangjiemsft_0-1722924452566.png

We can create a column on Table.

Avg = AVERAGEX(FILTER('Table',[Quarter]=EARLIER('Table'[Quarter])),[Score])

(2) We can create a table [Table2].

Table 2 = ADDCOLUMNS(VALUES('Table'[Quarter]),"Region","RegAvg")

Then create a column on Table2.

Score = CALCULATE(MAX('Table'[Avg]),FILTER('Table',[Quarter] =EARLIER('Table 2'[Quarter])))

(3) Then we can create a table [Table3].

Table 3 = 
var _a=SUMMARIZE('Table',[Quarter],[Region],[Score])
RETURN UNION(_a,'Table 2')

vtangjiemsft_1-1722924788983.png

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @RichOB ,

 

Thanks @bhanu_gautam  for the quick reply. Please allow me to offer an alternative idea:

(1) This is my test data.

vtangjiemsft_0-1722924452566.png

We can create a column on Table.

Avg = AVERAGEX(FILTER('Table',[Quarter]=EARLIER('Table'[Quarter])),[Score])

(2) We can create a table [Table2].

Table 2 = ADDCOLUMNS(VALUES('Table'[Quarter]),"Region","RegAvg")

Then create a column on Table2.

Score = CALCULATE(MAX('Table'[Avg]),FILTER('Table',[Quarter] =EARLIER('Table 2'[Quarter])))

(3) Then we can create a table [Table3].

Table 3 = 
var _a=SUMMARIZE('Table',[Quarter],[Region],[Score])
RETURN UNION(_a,'Table 2')

vtangjiemsft_1-1722924788983.png

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

bhanu_gautam
Super User
Super User

@RichOB , You can create a measure to count non zero 

NonZeroCount =
   COUNTROWS(
       FILTER(
           VALUES('YourTable'[Region]),
           [North] <> 0 || [SouthW] <> 0 || [SouthE] <> 0
       )
   )
 
Then create one more measure 
   RegAvg = DIVIDE([RegDiv], [NonZeroCount])



Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






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