Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Excel Counting non blank cells

Tags:

excel

I am having no luck trying to count my non blank cells in excel. I have tried multiple formulas and I keep getting inaccurate data. Here is the situation:

I am creating a Preventative Care list for my physicians (I have 4) I created a list of all their patients that have received a letter re: Prev. Care and I am inputting who needs a second letter and who has results. Some results are negative, some are positive. I have the list set up in alphabetical order on patients last name and then I have their physician initials in the other column. I want to check to see what percentage of each doctors patients have done their prev. care. I want to calculate this separately. Unfortunately, the cells are no in order. I have tried everything to my knowledge.

Help!

like image 274
user2725841 Avatar asked Dec 12 '22 11:12

user2725841


1 Answers

This will give you how many blank cells you have. You can deduct this from the total number of cells in your column, or you could use this directly to compute your percentage as (1 - x) where x is percentage of blank cells.

 =COUNTBLANK(<your column>)

E.g:

 =COUNTBLANK(A1:A10)
like image 59
Mayou Avatar answered Dec 26 '22 22:12

Mayou