I am trying to duplicate all rows where column u shows "december" and i am trying to use this formula to return the data in row b where column u = december:
sheet 1 a1 is just a helper cell containing the word december
[pre]
[/pre]
It seems to be functioning correctly, however its only returning 0 instead of the data in the desired cells
heres what b16 has, and what it should display
Test Rob Zaenglein 0 0 0 0 0 0 0 0 0 December
So b2 has the formula, and ideally should display Rob Zaenglein, but its just displaying 0
sheet 1 a1 is just a helper cell containing the word december
[pre]
Code:
=IF(ISERROR(INDEX($B$16:$B$65000,SMALL(IF($U$16:$U$65000=Sheet1!$A$1,ROW($U$16:$U$65000)),ROW(1:1)))),"",
INDEX($B$16:$B$65000,SMALL(IF($U$16:$U$65000=Sheet1!$A$1,ROW($U$16:$U$65000)),ROW(1:1))))
It seems to be functioning correctly, however its only returning 0 instead of the data in the desired cells
heres what b16 has, and what it should display
Test Rob Zaenglein 0 0 0 0 0 0 0 0 0 December
So b2 has the formula, and ideally should display Rob Zaenglein, but its just displaying 0