E
Ed Davis
I have 15 text boxes on a sheet.
I want to copy all 15 to all sheet names beginning with "01" and ending with
"31" which are days of the month.
I want to put them in the exact location where there are currently but in
the new sheet.
These sheets are already created and are setup exactly alike with the exact
same format.
I am using the following code to copy them now but it is very time consuming
changing the ranges and names.
Is there a way to just copy all text boxes to the next sheet and all the way
to the last sheet in the list "31".
Thank you so much in advance for any help given.
Sub CopyTextBox()
Sheets("01").Select
ActiveSheet.Shapes("TextBox 2").Select
Selection.Copy
Sheets("02").Select
Range("K1").Select
ActiveSheet.Paste
Range("A1").Select
End Sub
I want to copy all 15 to all sheet names beginning with "01" and ending with
"31" which are days of the month.
I want to put them in the exact location where there are currently but in
the new sheet.
These sheets are already created and are setup exactly alike with the exact
same format.
I am using the following code to copy them now but it is very time consuming
changing the ranges and names.
Is there a way to just copy all text boxes to the next sheet and all the way
to the last sheet in the list "31".
Thank you so much in advance for any help given.
Sub CopyTextBox()
Sheets("01").Select
ActiveSheet.Shapes("TextBox 2").Select
Selection.Copy
Sheets("02").Select
Range("K1").Select
ActiveSheet.Paste
Range("A1").Select
End Sub