Hi Guys,
I have some data that I'm copying from a web based inventory program at work and I need to use VBScript to paste it into Excel the same as if I went to the paste button and selected "Match Destination Formatting" so that it retains all the columns but none of the hyperlinks. This is as far as I've gotten (I'm new to VBS so any more efficient suggestions would be appreciated).
Dim objExcel
Dim objBook
Dim objSheet
Set objExcel = CreateObject("Excel.Application")
Set objBook = objExcel.Workbooks.Add()
Set objSheet = objBook.Worksheets("Sheet1")
objExcel.Visible=true
objSheet.PasteSpecial-4122Sorry if this is in the wrong spot.
regards,
sirnorman3