Copy Active Worksheet into a New Workbook
Let's say if you want to copy your active worksheet in a new
workbook, just run this macro code and it will do the same for you. It's a
super time saver.
Sub CopyWorksheetToNewWorkbook()
ThisWorkbook.ActiveSheet.Copy _
Before:=Workbooks.Add.Worksheets(1)
End Sub
No comments:
Post a Comment