I currently have my own vba to take data from some website, I also imposed some codes to do analytical stuff.
The thing is that I would like to save the analytical results in a new sheet every time I run the macro.
How should I deal with the code?
I currently have my own vba to take data from some website, I also imposed some codes to do analytical stuff.
The thing is that I would like to save the analytical results in a new sheet every time I run the macro.
How should I deal with the code?
You could just start adding this to your code, which generate a new tab and call it with "R_" and the current date/time:
Sheets.Add.Name = ActiveSheet.Name = "R_" & Format(Date, "ddmmyy") & "_" & Format(Time, "hhmmss")
then you have to edit your code and print all results in this sheet. It is really hard to help you in this second part, because you didn't show us the code you're using.