وبهذه الصسغة ممكن وضع زر الأمر في اي ورقة
Sub Abu_Ahmed()
Dim cl As Range
Set Mysh = Sheets("2")
Set Mysh1 = Sheets("1")
For Each cl In Mysh1.Range("G2:G" & Mysh1.[G10000].End(xlUp).Row)
If cl = Mysh.[G2] Then
Mysh.Range("A2:F7").Copy
Mysh1.Range("A" & cl.Row).PasteSpecial xlPasteValues
Exit For
End If
Next
Application.CutCopyMode = False
Set Mysh = Nothing
Set Mysh1 = Nothing
End Sub