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.
as joan has passed put column d through typing or formula, results on sheet2 change like:
the iferror function shows empty strings (e.g. "") every cell filled down cannot produce matching value.
Comments
Post a Comment