excel - Percentage Greater than/Less than in a table -


i have table want find percentage greater , percentage less compared baseline, total group based on weights of each group.

here example table:

     benchmark   grp 1   grp 2   grp 3   grp 4     10          10       11      10      12     14          12       15      11      15     17          11       17      13      16     18          14       15      14      17      poulation   40       45      30      80 

what want find out each level of benchmark % of total population of 4 groups above or below bench mark value.

i have tried various sumproducts , sumifs can't seem work.

let me know thoughts!

thanks always!

assuming sample data in a1:e7 put following formula b9 , use ctrl+shift+enter record array formula:

=sum(if(b$2:b$5>$a$2:$a$5,1,0))/counta($a$2:$a$5)

this can copied across under other groups. below showing how works me.

note: array formula display braces ({...}) around not type these.

enter image description here


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -