セルを編集する †
Excelのセルに対して文字列や数値を代入することができます。
セルの位置は"A1"や"C5"といった形式で指定します。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
| newcom xlApp, "Excel.Application"
xlApp("Visible") = 1 xlBooks = xlApp("Workbooks") xlBook = xlBooks("Add") xlSheet = xlBook("Worksheets", "sheet1")
xlRange = xlSheet("Range", "A1") xlRange("Value") = 100 xlRange = xlSheet("Range", "A2") xlRange("Value") = 3.14 xlRange = xlSheet("Range", "B1") xlRange("Value") = "文字列"
delcom xlRange
delcom xlBook
delcom xlBooks
delcom xlApp
stop
|