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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Give whatever coding you already have and the url along with what you want
-- Don Guillett SalesAid Software "Scott" wrote in message ... Tim/Johannes, This is exactly what I want to do. The problem with the code provided below is that it did not show how to copy data from the web and paste it in Excel. Your help is appreciated. Scott "Tim Williams" wrote: 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 |