A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If you have a recent version of Excel, you can use the FILTER function, if necessary in combination with CHOOSECOLS.
Let's say your data are on a sheet named Detail Sheet, in A2:K100.
On the other sheet, you enter a family key in B1.
In another cell, say in A3, enter the formula
=FILTER('Detail Sheet'!A2:K100, 'Detail Sheet'!A2:A100=B1, "No Match")
If you want to return values from selected columns only, say columns B, C, E and H (column numbers 2, 3, 5, 8):
=IFERROR(CHOOSECOLS(FILTER('Detail Sheet'!A2:K100, 'Detail Sheet'!A2:A100=B1), 2, 3, 5, 8), "No Match")