Open Excel Spreadsheet
I got the following code. The workbook isn't opened.
Option Explicit
Dim objExcel
Dim objWorkbook
Set objExcel = WScript.CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open("C:\Scripts\New_users.xls" )
Set objExcel = Nothing
Set objWorkbook = Nothing
|