One way, this will copy FROM the currently activesheet to the template:
![]()
Sub Example() With ActiveSheet .Range("B9:Q9").Copy Sheets("TeamMemberMaster").Range("B93:Q93").PasteSpecial Paste:=xlPasteValues .Range("B11:Q11").Copy Sheets("TeamMemberMaster").Range("B95:Q95").PasteSpecial Paste:=xlPasteValues End With End Sub
Bookmarks