![]() |
How do I use countif to count values excluding blank cells
I am trying to get the percentage of 1's in a column excluding blank cells
A B 1 1 0 2 1 1 3 4 0 I know the formula would be =countif(a1:a4,1) answer would be 2 but, how do I get the percent of the #1's with including blank cells. |
How do I use countif to count values excluding blank cells
=countif(a1:a4,1)/count(a1:a4)
=count() returns the number of numbers in the range. Glenda wrote: I am trying to get the percentage of 1's in a column excluding blank cells A B 1 1 0 2 1 1 3 4 0 I know the formula would be =countif(a1:a4,1) answer would be 2 but, how do I get the percent of the #1's with including blank cells. -- Dave Peterson |
How do I use countif to count values excluding blank cells
Okay, now what If I want to exclude the blank cell in a3
"Dave Peterson" wrote: =countif(a1:a4,1)/count(a1:a4) =count() returns the number of numbers in the range. Glenda wrote: I am trying to get the percentage of 1's in a column excluding blank cells A B 1 1 0 2 1 1 3 4 0 I know the formula would be =countif(a1:a4,1) answer would be 2 but, how do I get the percent of the #1's with including blank cells. -- Dave Peterson |
How do I use countif to count values excluding blank cells
Since the cell is empty, it won't be included in the =countif() and it won't be
included in the =count(). In fact, all non-numeric entries would be excluded from the =count() portion. Am I missing something? Glenda wrote: Okay, now what If I want to exclude the blank cell in a3 "Dave Peterson" wrote: =countif(a1:a4,1)/count(a1:a4) =count() returns the number of numbers in the range. Glenda wrote: I am trying to get the percentage of 1's in a column excluding blank cells A B 1 1 0 2 1 1 3 4 0 I know the formula would be =countif(a1:a4,1) answer would be 2 but, how do I get the percent of the #1's with including blank cells. -- Dave Peterson -- Dave Peterson |
How do I use countif to count values excluding blank cells
I thought maybe something like:
=COUNTIF(A1:A4,A1)/COUNTA(A1:A4) "Glenda" wrote in message ... Okay, now what If I want to exclude the blank cell in a3 "Dave Peterson" wrote: =countif(a1:a4,1)/count(a1:a4) =count() returns the number of numbers in the range. Glenda wrote: I am trying to get the percentage of 1's in a column excluding blank cells A B 1 1 0 2 1 1 3 4 0 I know the formula would be =countif(a1:a4,1) answer would be 2 but, how do I get the percent of the #1's with including blank cells. -- Dave Peterson |
All times are GMT +1. The time now is 07:10 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com