首页 > 开发 > JS > 正文

jscript之Read an Excel Spreadsheet

2024-09-06 12:42:12
字体:
来源:转载
供稿:网友
Description

Demonstration script that reads the values stored in a spreadsheet 
named C:/Scripts/New_users.xls. 
Script Code
代码如下:
Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Open _
    ("C:/Scripts/New_users.xls")

intRow = 2

Do Until objExcel.Cells(intRow,1).Value = ""
    Wscript.Echo "CN: " & objExcel.Cells(intRow, 1).Value
    Wscript.Echo "sAMAccountName: " & objExcel.Cells(intRow, 2).Value
    Wscript.Echo "GivenName: " & objExcel.Cells(intRow, 3).Value
    Wscript.Echo "LastName: " & objExcel.Cells(intRow, 4).Value
    intRow = intRow + 1
Loop

objExcel.Quit



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表