VBS(VBScript)によるエクセルのセルの値を取得する方法を紹介
エクセルのセルの値を取得する方法
サンプルソース
(入力)
Set obj = WScript.CreateObject("Excel.Application")
Set excel = obj.WorkBooks.Open("f:\test.xlsx")
Set sheet = excel.WorkSheets.Item(1)
WScript.Echo sheet.Cells(1, 1)
obj.Quit()
(出力)
テスト
以下の内容を表示