G GN0001 Member Jan 1, 2012 #1 I have a range that has these values on each cell column a Column b column c column d column E and so on 4.987 0.654 0 0 1.765 I need to count the cells that have values bigger than 0, any help? Any array formula can work for this purpose? Thanks as usual. Guity
I have a range that has these values on each cell column a Column b column c column d column E and so on 4.987 0.654 0 0 1.765 I need to count the cells that have values bigger than 0, any help? Any array formula can work for this purpose? Thanks as usual. Guity
N NARAYANK991 Excel Ninja Jan 1, 2012 #2 Hi , You don't need an array formula ; just a simple =COUNTIF(A1:E1,">0") will do. Extend the range A1:E1 as far as you want. Narayan
Hi , You don't need an array formula ; just a simple =COUNTIF(A1:E1,">0") will do. Extend the range A1:E1 as far as you want. Narayan
Hui Excel Ninja Staff member Jan 1, 2012 #3 If you have negative numbers it should be =COUNTIF(A1:E1,"<>0")