ptcsite
Altın Üye
- Katılım
- 8 Nisan 2016
- Mesajlar
- 130
- Excel Vers. ve Dili
- M.OFFICE 2021 TR 64 Bit
- Altın Üyelik Bitiş Tarihi
- 26-12-2027
XML:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [E17]) Is Nothing Then Exit Sub
Set s = Sayfa5
s.Name = Range("E17")
End Sub
XML:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, [K161:K655]) Is Nothing Then
Cells(Target.Column, "L") = Format(Now, "dd.mm.yyyy")
End Sub
Kod:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [E17]) Is Nothing Then Exit Sub
Set s = Sayfa5
s.Name = Range("E17")
If Not Intersect(Target, [K161:K655]) Is Nothing Then
Cells(Target.Column, "L") = Format(Now, "dd.mm.yyyy")
End Sub