excel - count blanks per row filtered on name -


greeetings

i trying create formula in excel counting blank cells (that easy part ;))

but find number of blank cells per name in rowa.

sheet1       b     1   *name*  *data*     2   brian   data1     3   niels   data1     4   kurt    data2     5   kurt         6   brian   data3     7   brian        8   niels   data2 

should result in:

sheet2

      b 1   name    percent empty cells 2   brian   50% 3   niels   0% 4   kurt    50% 

since 50 percent of brians fields empty. since 50 percent of kurts fields empty.

anyone?

to count empty cells, assuming f2 name value want up:

=countifs(a:a,f2,b:b,"") 

to percentage of empty cells:

=countifs(a:a,f2,b:b,"")/countif(a:a,f2) 

Comments

Popular posts from this blog

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12:test (default-test) on project.Error occurred in starting fork -

windows - Debug iNetMgr.exe unhandle exception System.Management.Automation.CmdletInvocationException -

configurationsection - activeMq-5.13.3 setup configurations for wildfly 10.0.0 -