Hi
See if this gets you started. It doesn't close down the output workbook at this stage as I want you to make sure it copies things across properly.
Sub ExportIt()
Workbooks.Open (ThisWorkbook.Path & "\master rota.xls")
Set outsh = Sheets(ThisWorkbook.Sheets("rota").Range("A4").Value)
ThisWorkbook.Activate
For Each ce In Range("F6:F" & Cells(Rows.Count, "F").End(xlUp).Row)
Set findit = outsh.Range("F:F").Find(what:=ce.Value)
For j = 7 To Cells(2, Columns.Count).End(xlToLeft).Column
outcol = Evaluate("=match(" & Format(CDate(Cells(2, j)), 0) & ",2:2,0)")
outsh.Cells(findit.Row, outcol).Value = Cells(ce.Row, j).Value
Next j
Next ce
End Sub
rylo
Bookmarks