Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I am bringing in data from the web using a macro (see below). The data from the webpage gets imported correctly, however in an internet browser, one of the columns has text with an underlying hyperlink, and I am hoping someone can help me bring that hyperlink instead of the text into Excel. For example, http://finance.yahoo.com/q?s=AAPL&ql=1 has links to many pages including "Order Book", but I would want "http://finance.yahoo.com/q/ecn?s=AAPL+Order+Book" to be brought into Excel. Thank you so much!! My macro: With ActiveSheet.QueryTables.Add(Connection:= _ "URL;https://www.XYZ....", _ Destination:=Range("$A$1")) .Name = "Import" .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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Bringing Data From Access To Excel | Excel Worksheet Functions | |||
Bringing the Add-in to excel...? | Excel Programming | |||
Bringing in a Union Query with excel? | Excel Worksheet Functions | |||
Bringing Word doc into Excel | Excel Discussion (Misc queries) | |||
Bringing Excel to the front | Excel Programming |