This is some quick code I have knocked up haven't tested it, as I am on the bus. This should work within the same work book. I haven't got file paths so can't link workbooks. Two sheets one called data one called summary. To get to the code alt and F11. Copy this in and press F5.
Sub Get_Data()
Dim Job_Code As String
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Job_Code = Range("A1") ' Cell where the job code will be in the summary sheet
Sheets("Data").Select ' Name of master data sheet
Lastrow = ActiveSheet.Cells(ActiveSheet.Rows.Count, "A").End(xlUp).Row ' the "A" relates to the column letter
Range("A1").AutoFilter Field:=1, Criteria1:=Job_Code ' Field:=1 is the column number the job code is in.
Range("A2:H" & Lastrow).Copy 'A is the starting column, 2 is the starting row, H is the last column in the table you want to copy
Sheets("Summary").Select 'Name of sheet you want to copy to
Range("A3").PasteSpecial xlPasteValues ' A3 is the cell you want to paste into
End Sub