
Option Explicit
Sub WEB()
Dim Price As String
Cells.Clear
Range("A1").Select
Application.ScreenUpdating = False
Price = "URL;api.eve-marketdata.com/api/item_prices2.txt?char_name=dio&type_ids=34&station_ids=60003760&buysell=b&minmax=max"
With ActiveSheet.QueryTables.Add(Connection:=Price, Destination:=Range("$A$2"))
.WebSelectionType = xlEntirePage
.Refresh BackgroundQuery:=False
End With
Application.ScreenUpdating = True
End Sub
|
