回答編集履歴
1
追記
answer
CHANGED
@@ -28,4 +28,13 @@
|
|
28
28
|
|
29
29
|
End Sub
|
30
30
|
|
31
|
+
Sub Sample2()
|
32
|
+
Dim f
|
33
|
+
With CreateObject("Scripting.FileSystemObject")
|
34
|
+
For Each f In .GetFolder(ThisWorkbook.Path).Files
|
35
|
+
If LCase(f.Name) Like "result*.csv" Then ReadCSV f.Name
|
36
|
+
Next
|
37
|
+
End With
|
38
|
+
End Sub
|
39
|
+
|
31
40
|
```
|