質問編集履歴

3

環境情報を記載

2015/08/31 15:46

投稿

nob777
nob777

スコア112

test CHANGED
File without changes
test CHANGED
@@ -54,4 +54,12 @@
54
54
 
55
55
 
56
56
 
57
+ ■環境
58
+
59
+ powershell:5.0.10240.16384
60
+
61
+ OS:Windows 10 Home
62
+
63
+
64
+
57
65
  以上、よろしくお願いいたします。

2

コードの訂正

2015/08/31 15:46

投稿

nob777
nob777

スコア112

test CHANGED
File without changes
test CHANGED
@@ -17,6 +17,8 @@
17
17
  ```powershell(ComObject使用)
18
18
 
19
19
  $excel = New-Object -ComObject Excel.Application
20
+
21
+ $excel.Workbooks.Open("C:\work\sample.xls")
20
22
 
21
23
  $excel.Cells($excel.Rows.Count, 1).End($excel.xlUp).Row
22
24
 

1

エラー内容の訂正

2015/08/31 15:30

投稿

nob777
nob777

スコア112

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
  発生場所 C:\work\GetSendList.ps1:14 文字:1
34
34
 
35
- + $MaxNo = $excel.Cells($excel.Rows.Count, 1).End($excel.xlUp).Row
35
+ + $excel.Cells($excel.Rows.Count, 1).End($excel.xlUp).Row
36
36
 
37
37
  + CategoryInfo : OperationStopped: (:) [], COMException
38
38
 
@@ -49,3 +49,7 @@
49
49
  B.(Aの回避策が無い場合)他の代替え方法で、
50
50
 
51
51
  最終行を極力簡易に、かつ、高速に取得する方法はないでしょうか?
52
+
53
+
54
+
55
+ 以上、よろしくお願いいたします。