I am using the following code to loop through all my worksheets copying and pasting the same values on all.
The trouble is my code only applies the changes to the Active sheet.
Sub Button4_Click()
Dim WS_Count As Integer
Dim I As Integer
WS_Count = ActiveWorkbook.Worksheets.Count
' Begin the loop.
For I = 1 To WS_Count
Range("C10").Select
Selection.Copy
Range("C11:C300").Select
ActiveSheet.Paste
Range("C10").Select
Next I
End Sub
How can I configure my code so that it is applied to all sheets in the loop?
Thanks