• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

extract data by offset

i have a data i try but not sucess if i select LWP then extract all name by data shared.
 

Attachments

  • extract by offset.xlsx
    11.9 KB · Views: 10
  • extract by offset.xlsx
    11.9 KB · Views: 3
What's wrong with AGGREGATE?
Is it an Excel version thing?
Try:
=IFERROR(INDEX(B:B,SMALL(ROW(A$2:A$100)/(IF(C$2:C$100=$H$3,1,1E-99)),ROW(A1)),0),"")
 
This has to be one of my most ridiculous formulae. Using only 'offset index match':
In cell H4:
=IFERROR(INDEX($B$2:$B$44,MATCH(TRUE,$C$2:$C$44=$H$3,0)),"")

In cell H5:
=IFERROR(INDEX(OFFSET($B$2:$B$44,MATCH(H4,$B$2:$B$44,0),0),MATCH(TRUE,OFFSET($C$2:$C$44,MATCH(H4,$B$2:$B$44,0),0)=$H$3,0)),"")
copied down.

It relies on the names in column B being unique.
 
Last edited:
This has to be one of my most ridiculous formulae. Using only 'offset index match':
In cell H4:
=IFERROR(INDEX($B$2:$B$44,MATCH(TRUE,$C$2:$C$44=$H$3,0)),"")

In cell H5:
=IFERROR(INDEX(OFFSET($B$2:$B$44,MATCH(H4,$B$2:$B$44,0),0),MATCH(TRUE,OFFSET($C$2:$C$44,MATCH(H4,$B$2:$B$44,0),0)=$H$3,0)),"")
copied down.

It relies on the names in column B being unique.
So great very very thanks
 
Back
Top