Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I wish to link to a web page copy the information to the
clipboard and paste this as plain text onto an excel sheet. Any help with achieving this or pointers to articles would be appreciated. Ta |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Joe,
I wish to link to a web page copy the information to the clipboard and paste this as plain text onto an excel sheet. Any help with achieving this or pointers to articles would be appreciated. It might be easier to use a web query. Click on Data Import External data New Web Query and follow the wizard. Regards Stephen Bullen Microsoft MVP - Excel www.BMSLtd.ie |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Joe,
Joe wrote: I wish to link to a web page copy the information to the clipboard and paste this as plain text onto an excel sheet. Any help with achieving this or pointers to articles would be appreciated. As Stephen noted, you can use the Web Query feature to do this. If you are looking for a programmatic solution, you can automate IE: Public Function gsGetURLText(rsURL As String) As String Dim ie As Object Set ie = CreateObject("InternetExplorer.Application") With ie .Navigate rsURL Do Until ie.ReadyState = 4 And Not ie.Busy DoEvents Loop gsGetURLText = .Document.Body.InnerText .Quit End With Set ie = Nothing End Function -- Regards, Jake Marx MS MVP - Excel www.longhead.com [please keep replies in the newsgroup - email address unmonitored] |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Linking multiple databases to one summary page | Excel Worksheet Functions | |||
linking a value from another page or tab in a formula | Excel Worksheet Functions | |||
Linking to a specific page in an excel workbook | Excel Discussion (Misc queries) | |||
Linking excel values to a web page. | Excel Discussion (Misc queries) | |||
Linking to Worksheets on Excel -Saved Web Page | Links and Linking in Excel |