Try this... change the sheet names in the below code to your file sheet names.
Sub CopyDataToAnotherLocation()
Dim nEndRw As Long, wRaw As Worksheet, wMaster As Worksheet
Set wRaw = Sheets("ugly")
Set wMaster = Sheets("presentable")
With wRaw
nEndRw = .Range("A2").CurrentRegion.Rows.Count-1
.Range("A2:A" & nEndRw).Copy wMaster.Range("B10")
.Range("B2:B" & nEndRw).Copy wMaster.Range("C10")
.Range("D2:D" & nEndRw).Copy wMaster.Range("E10")
.Range("G2:G" & nEndRw).Copy wMaster.Range("D10")
End With
End Sub
Bookmarks