Forum Discussion
StevenConrad1
Dec 30, 2021Copper Contributor
Formula to extract running data.
I am using Excel 2010. I have a simple spreadsheet that I am attempting to extract data from. I need a formula in cell E3, E:4, E:5, ect… that will look down column A:A to find a value that starts wi...
SergeiBaklan
Dec 30, 2021Diamond Contributor
For this
in E3
=IFERROR( INDEX(A:A, AGGREGATE(15, 6, 1/( LEFT(A:A, LEN($E$1) ) = $E$1)*( ROW(A:A)- ROW($A$1) + 1), ROW() - ROW($E$2) ) ), "" )
in F3
=IFERROR( INDEX(B:B, AGGREGATE(15, 6, 1/( LEFT(A:A, LEN($E$1) ) = $E$1)*( ROW(A:A)- ROW($A$1) + 1), ROW() - ROW($E$2) ) ), "" )
and drag them down till empty cells appear. Above are regular formulae for 2010.