If the macro you want to copy is a Selection_Change event, then you can place the macro in the code module for ThisWorkbook instead of the worksheet code module and it will apply to all sheets in the workbook. This macro will apply to all sheets except the "Template" sheet. This way you don't have to have a copy in each worksheet code module.
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
If Sh.Name <> "Template" Then
'your code goes here
End If
End Sub
If you want the code to apply to all sheets, then this would do it:
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
'your code goes here
End Sub
Bookmarks