Can anyone help me find the VBScript eqivalent of the VBA code listed below? I'm pretty sure VBScript does not support named arguments, so I'm even wondering if this is even possible. Here it is:
Any help would be greatly appreciated.
Code:
Sub Macro2()
Sheets("Sheet1 (2)").Select
Sheets("Sheet1 (2)").Copy Before:=Workbooks("Book2").Sheets(1)
End Sub
Any help would be greatly appreciated.