View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
nixter nixter is offline
external usenet poster
 
Posts: 7
Default vb scripting -- copying web page, paste as text

I make a report daily that is a copy, paste text only of an internal site. I
am trying to emulate a copy of an internal web page and paste--text only into
a spreadsheet. From there I have a macro that runs & cuts the data into a
report. Is there a way to insert this copy/paste into the script?

The closest I could come up with is :
====
Sub GetData()
Workbooks.Open
"http://server/content./"
End Sub

Thanks