As stated in the other thread,
think we're basically on the same "page" <g>,
but you might not have adapted the example set-up steps
correctly, going by what you described in your post below
Ok, I gather this is more or less your current set-up ..
From your 1st response:
... Column E is the critical column.
Headers take up 3 rows in my workbook.
Data entry begins with row 4.
From your 2nd response:
...my 12 data entry colums and down to row 200.
So, I'll take it your table is in *Sheet1*
in cols A to L (12 cols),
data in row4 to row200
with col E as the trigger col, containing
the alphanumerics: C1, C2, ... C7
(We can't use plain numbers, which will throw the
extract formulas off. The alpha "C" used is arbitrary.)
Try out these constructs ..
In Sheet1
-------------
List across in row3 in 7 *empty* cols to the right
of the data cols A to L, say in cols Q:W,
the 7 codes: C1,C2,C3 ... C7 (in Q3:W3)
Put in Q4: =IF(ISBLANK($E4),"",IF($E4=Q$3,ROW(),""))
Copy Q4 across to W4, fill down to W200
In sheet: Code1
---------------------
Rows 1 to 3 are assumed to contain col headers
across in cols A:L which are identical to that in Sheet1
Put in A4:
=IF(ISERROR(MATCH(SMALL(Sheet1!$Q$3:$Q$200,ROW(A1)),Sheet1!$Q$3:$Q$200,0)),"
",OFFSET(Sheet1!$A$3,MATCH(SMALL(Sheet1!$Q$3:$Q$200,ROW(A1)),Sheet1!$Q$3:$Q$
200,0)-1,COLUMN(A1)-1))
Copy A4 across to L4, fill down to L200
In A4:L200 will be the auto-extracted details
of all the 12 cols of info for Code "C1" from Sheet1
--
Repeat the construct above for Code1 for the rest of
the other Code sheets: Code2, Code3, .. Code7
The only change needed in the formula in A4 for each Code
sheet is to the col ref "$Q$3:$Q$200".
For each Code sheet, just change the col ref "$Q$3:$Q$200"
in the formula to point to the Code's column set-up in Sheet1
(viz. col Q is for Code1, col R for Code2 ... col W for Code7):
Code2: Change "$Q$3:$Q$200" to "$R$3:$R$200"
Code3: Change "$Q$3:$Q$200" to "$S$3:$S$200"
and so on
Just copy>paste the formula above for Code1 into A4
in each sheet, then do an Edit > Replace to change
the col refs in the formula
Fill A4 across to L4, then down to L200
(as done for Code1)
--
The data in A4:L200 in each Code's sheet will auto-retrieve the
corresponding rows for the particular Code, according to the inputs/changes
made in the "Code" column in Sheet1