View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Copy internet page excel

hi Gordon

You can use workbook.open

Sub test()
Workbooks.Open "http://www.rondebruin.nl/tips.htm"
End Sub


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Gordon" wrote in message ups.com...
Is there anyway to copy an internet page to excel using VBA?
I am now manually doing a Select All, copy, past method.

Thanks

Gordon