Forum Discussion
horsteadjim
Jul 27, 2017Copper Contributor
MS Excel
I have created a spreadsheet to QC Maintenance Plans. I would like to save each one as another sheet in the same workbook. I have created a button and need to assign a macro to that button. Can anyone help me with the code to save that sheet as a sheet within the same workbook.
- Matt MickleBronze Contributor
Sub Test() For Each Sheet In ThisWorkbook.Sheets 'Copy Entire Sheet and Paste ss new sheet in same workbook Sheet.Copy After:=Sheets(Sheets.Count) Next Sheet End Sub