M
moonwalker
I've been searchign the forum but i cant find a specified help.
I have two xls files, a.xls and b.xls
i want to combine them into c.xls with worksheet a and b
can anyone give me some guide on this?
Im using vbscript
Set objXL = WScript.CreateObject ("Excel.Application")
Set objWb = objXl.WorkBooks.Add
Set objWb = objXL.ActiveWorkBook.WorkSheets(1)
objWB.name = "a"
objWb.Activate
The above code open a need workbook with name "a". How to get a.xls
into the current workbook?
Appreciate ur help
I have two xls files, a.xls and b.xls
i want to combine them into c.xls with worksheet a and b
can anyone give me some guide on this?
Im using vbscript
Set objXL = WScript.CreateObject ("Excel.Application")
Set objWb = objXl.WorkBooks.Add
Set objWb = objXL.ActiveWorkBook.WorkSheets(1)
objWB.name = "a"
objWb.Activate
The above code open a need workbook with name "a". How to get a.xls
into the current workbook?
Appreciate ur help