excel - Autofill sheet 2 with sheet 1 -


i have sheet 1 contains:

i'll put "y" "passed", 2nd information of joan not yet complete because it's not yet finish.

name | attendance | final grade | result juan |     y      |      y      | passed joan |     y      |             |  

i create 2nd sheet 1 column saying "graduates". want here when column result (d2) on sheet 1 says students passed. fill column on sheet 2 (a2) name of student passed.

like this:

graduates | juan      | 

so far, tried auto-filling sheet 2 using sheet 1 putting =sheet1!d2 on cell on sheet 2 (a2), how can put data under column name (on sheet1) on column graduates (on sheet2) if person on sheet1 has value under column result?

in sheet2's a2 use following formula:

=iferror(index(sheet1!a$2:a$9999, small(index(row($1:$9998)+(sheet1!d$2:d$9999<>"passed")*1e+99, , ), counta(a$1:a1))), "") 

fill down large number of rows equal number of students in sheet1. results should resemble following.

        auto-populate sheet2 on conditions

as joan has passed put column d through typing or formula, results on sheet2 change like:

        auto-populate sheet2 on conditions

the iferror function shows empty strings (e.g. "") every cell filled down cannot produce matching value.


Comments

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - Bypass Geo Redirect for specific directories -

php - .htaccess mod_rewrite for dynamic url which has domain names -