Open webpage, copy all and paste in Excel

Mylarbi

New Member
Joined
Feb 9, 2020
Messages
48
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi, I want a macro to open a webpage, select all of the page, copy and paste the raw data in Excel.
I have this using Chrome but it doesn't work. I don't mind changing to MS Edge if necessary. Thanks
VBA Code:
Sub Test()
Dim ChromeLocation As String
Dim MyURL As String

ChromeLocation = "C:\Program Files\Google\Chrome\Application\chrome.exe"

MyURL = "https://google.com"

    Shell (ChromeLocation & " -url -newtab " & MyURL)
        Cells.Select  ''''fail from here
    Selection.Copy
Cells("E1").PasteSpecial Format:="HTML", Link:=False, DisplayAsIcon:=False, NoHTMLFormatting:=True
End Sub
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
When you shell to chrome and load the webpage, excel loses focus so there is nothing in excel to copy.

To load web data into a spreadsheet use Data / From Web. You can hit Record Macro before you do this to record the macro, then make changes as necessary.
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,530
Members
448,969
Latest member
mirek8991

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top