These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Pulling Material Costs for Blueprints Into Excel?
Occasional Resident Newbie Correspondent for TMC: http://themittani.com/search/site/mephiztopheleze
This is my Forum Main. My Combat Alt is sambo Inkura
Sub QueryPriceList() Range("C4").Select 'select a cell with a external query within With Selection.QueryTable .Connection = "URL;" & Worksheets("Query").Range("C3").Text 'exchange the old query text with the one you need .WebSelectionType = xlEntirePage ' dont know if i need those ... .WebFormatting = xlWebFormattingNone .WebPreFormattedTextToColumns = True .WebConsecutiveDelimitersAsOne = True .WebSingleBlockTextImport = False .WebDisableDateRecognition = False .Refresh BackgroundQuery:=False End With Selection.QueryTable.Refresh ' excute query Call TransferPrices(True) ' a sub to get the latest data into my own databaseEnd Sub