This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dim objExcel | |
| Set objExcel = CreateObject("Excel.Application") | |
| Dim objBook | |
| Set objBook = objExcel.Workbooks.Open(WScript.Arguments(0)) | |
| Dim objSheet | |
| For Each objSheet In objBook.WorkSheets | |
| objSheet.Cells(1, 1).Select() | |
| Next |
OlderNewer