Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear all,
I have a list of html-links in Excel. Behind these links always the same webpage arises (with different data). Now I wish to retrieve that data in Excel via a macro (1000+ links) Can anyone help me with this? Thanks, Johannes |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub GetWebData()
Dim wb As Workbook Dim c As Range 'adjust range to suit For Each c In ThisWorkbook.Sheets("Links").Range("A1:A1000") With Workbooks.Open(c.Value) 'get your data here .Close False End With Next c End Sub Tim. "Johannes" wrote in message ... Dear all, I have a list of html-links in Excel. Behind these links always the same webpage arises (with different data). Now I wish to retrieve that data in Excel via a macro (1000+ links) Can anyone help me with this? Thanks, Johannes |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Data exported from Lotus approach to excel how do I show it in a u | Excel Discussion (Misc queries) | |||
Approach to Excel | Excel Discussion (Misc queries) | |||
Data Flipping - Approach with formula? | Excel Programming | |||
Using EXCEL 2003 how do I open a Lotus Approach 9.5 database? | Excel Worksheet Functions | |||
Excel VBA & ADO - retreiving data from Approach dBase IV .dbf files | Excel Programming |