DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
If Target.Text = "X" Then
Range("b" & Target.Row & ":l" & Target.Row).Copy
Range("b" & Target.Row & ":l" & Target.Row).PasteSpecial xlPasteValues
Application.CutCopyMode = False
End If
End Sub