Excel VisualBasic Script

Sub copy()
    Workbooks("your.xls").Sheets("Costs").Copy, _
        After:=Sheets(Sheets.Count)
End Sub