Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default Approach web-data via Excel

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default Approach web-data via Excel

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data exported from Lotus approach to excel how do I show it in a u Martin Heathcote Excel Discussion (Misc queries) 0 July 7th 08 10:06 AM
Approach to Excel Jack Sons Excel Discussion (Misc queries) 5 May 15th 07 10:12 PM
Data Flipping - Approach with formula? Steph[_6_] Excel Programming 3 November 1st 05 07:52 PM
Using EXCEL 2003 how do I open a Lotus Approach 9.5 database? JHB Excel Worksheet Functions 4 February 3rd 05 10:43 PM
Excel VBA & ADO - retreiving data from Approach dBase IV .dbf files EddyT Excel Programming 1 May 14th 04 03:27 PM


All times are GMT +1. The time now is 08:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"