|
▼ワタル さん:
おはようございます。
これね、実際に変数にセットしているコードも掲載して
「ほら、222はうまくいくけど、111はうまくいかないでしょう?」
というコメントが記述できるようなふたつコードを掲載してください。
新規ブック標準モジュールに
'=========================================================
Sub Macro1()
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://table.yahoo.co.jp/t?c=2006&a=10&b=17&f=2006&d=10&e=17&g=d&s=7717.t&y=0&z=7717.t" _
, Destination:=Range("A1"))
.Name = "t?c=2006&a=10&b=17&f=2006&d=10&e=17&g=d&s=7717.t&y=0&z=7717.t"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
'=====================================================================
Sub Macro2()
Dim dest As String
Dim nm As String
dest = "URL;http://table.yahoo.co.jp/t?c=2006&a=10&b=17&f=2006&d=10&e=17&g=d&s=7717.t&y=0&z=7717.t"
nm = "t?c=2006&a=10&b=17&f=2006&d=10&e=17&g=d&s=7717.t&y=0&z=7717.t"
With ActiveSheet.QueryTables.Add(Connection:=dest, Destination:=Range("A1"))
.Name = nm
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlEntirePage
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
End Sub
上記はマクロの記録からの掲載ですが、
どちらも正常に作動していますよ!!
|
|