austin350s10
Active Member
- Joined
- Jul 30, 2010
- Messages
- 321
I am currently using the following code to Copy a sheet so that it ends up directly after the 1st sheet in the workbook.
How can I modify the above code to only copy a Range of cells from "Needs Assessment" including check boxes to a new sheet and keep the same sheet name format?
Code:
Sheets("Needs Assessment").Copy after:=Sheets(1)
ActiveSheet.Name = "Initial Assessment - " & Format(Range("L81"), "mm-dd-yyyy")
How can I modify the above code to only copy a Range of cells from "Needs Assessment" including check boxes to a new sheet and keep the same sheet name format?