0
這行VBA代碼從網上下載CSV文件並將數據轉儲到電子表格中。有人可以幫助我弄清楚如何調整此代碼中的SQL,以便選擇CSV表中的「關閉」列並將該列插入到電子表格中?謝謝!用SQL處理CSV
Sub test()
Dim sqldata As QueryTable
Set sqldata = ActiveSheet.QueryTables.Add(_
Connection:="TEXT;http://ichart.finance.yahoo.com/table.csv?s=JAZZ&d=9&e=3&f=2010&g=d&a=5&b=1&c=2007&ignore=.csv" & _
"sqlstring= SELECT * from table", _
Destination:=Range("A1"))
With sqldata
.TextFileCommaDelimiter = True
.Refresh 'executes the retreival
End With
End Sub
就「關閉」,並沒有其他的列 - 例如無日期」?另外,您是否想要標題爲「關閉」的欄目或「調整關閉」欄目? – barrowc 2010-10-05 00:29:25