Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I would like to count the number of cells in a numeric column but exclude if the value is 0. Seems like this should be fairly easy, but since I am new to PowerBI, I would appreciate any assistance! Thank you!
Solved! Go to Solution.
Yep that's another way of doing the same thing...
the only thing I'll change is add the table name as per Rob Collie's post here
EDIT: Sorry the post was actually by @MattAllington on Rob's site
But that's just a suggestion it should work regardless
Count Column = COUNTX ( FILTER ('Table', 'Table'[Column] <> 0) , 'Table'[Column] )
Hey @dlgardo,
Create a new column like the one below:
Count Column = SUMX([Dataset], IF([Column1]<>0, 1, 0))
This will count all the fields that are not equal to 0.
Hope this helps,
Alan
Here's an alternative
Column Count Measure = CALCULATE ( COUNTROWS('Table'), 'Table'[Column] <> 0 )
The above is basically internally treated like this...
Column Count Measure = CALCULATE ( COUNTROWS('Table'), FILTER ( 'Table', 'Table'[Column] <> 0 ) )
Also if for some reason you neeed to exclude the zeros but include the blanks just add the countblank like this
Column Count Measure = CALCULATE ( COUNTROWS('Table'), 'Table'[Column] <> 0 ) + COUNTBLANK ( 'Table'[Column] )
Yep that's another way of doing the same thing...
the only thing I'll change is add the table name as per Rob Collie's post here
EDIT: Sorry the post was actually by @MattAllington on Rob's site
But that's just a suggestion it should work regardless
Count Column = COUNTX ( FILTER ('Table', 'Table'[Column] <> 0) , 'Table'[Column] )
Thank you very much for the reply! Seems like that is counting every cell in the table. I just need a count of rows based on a column if the value is not 0. I have a total of about 86000 rows, and the number of rows that do not have a 0 value in Column F should come down to approx. 24K.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.