So I am working on a project to automate the pull of data from my companies website. I have figured out how to do the majority of the project; I am having trouble when I have to name the new sheet to write the data to. my code is as follows..
With y.Sheets("Sheet1").Range("A1")
.PasteSpecial x1PasteFormats
.PasteSpecial x1PasteValues
end With
What can I do so I do not have to go make a sheet named "Sheet1" every time the program runs. It would be dope if the sheet name could be the date and time. Any Help Would be Great
With y.Sheets("Sheet1").Range("A1")
.PasteSpecial x1PasteFormats
.PasteSpecial x1PasteValues
end With
What can I do so I do not have to go make a sheet named "Sheet1" every time the program runs. It would be dope if the sheet name could be the date and time. Any Help Would be Great