To avoid need for repetitive calcs I would advise the following:
C4: =MATCH($B4,Sheet1!$B$3:$AF$3,0)
D4: =COUNTIF(INDEX(Sheet1!$B$4:$AF$10,0,C4),"?*")
(assumes matrix is populated with text strings per the sample)
To then populate results:
B6:
=IF(ROWS(B$6:B6)>$D$4,"",INDEX(Sheet1!$B$1:$AF$10,SMALL(IF(INDEX(Sheet1!$B$4:$AF$10,0,$C$4)<>"",ROW($B$4:$AF$10)),ROWS(B$6:B6)),$C$4))
committed with CTRL + SHIFT + ENTER
copy down to B12
C6:
=IF($B6="","",INDEX(Sheet1!C$13:C$19,MATCH(Sheet2!$B6,Sheet1!$B$13:$B$19,0)))
copy down to C12 and across for D6:D12
Bookmarks