Forum Discussion
horsteadjim
Jul 31, 2017Copper Contributor
Macro so save a sheet with info taken from a cell.
I have created a spreadsheet where the sheet 1 is a form to be filled in for Quality Control. I have created a "Save" button that will use the 'copy and move' function to create a copy of the first s...
- Aug 02, 2017
Logaraj Sekar
Aug 01, 2017Iron Contributor
Hi horsteadjim,
Do this for Copying Current Sheet and Paste it to End of Sheet.
Sub Macro1()
a = Sheets.Count
Sheets("Sheet1").Select
Sheets("Sheet1").Copy After:=Sheets(a)
End SubFor renaming it, you have to specify cell reference which cell value should come as sheet name.
Logaraj Sekar
Aug 01, 2017Iron Contributor
Hi horsteadjim
Use this one in Command Button
Sub Macro1() a = Sheets.Count ActiveSheet.Copy After:=Sheets(a) End Sub