- Katılım
- 22 Mayıs 2009
- Mesajlar
- 1,017
- Excel Vers. ve Dili
- Office 2003
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A3:E65536")) Is Nothing Then Exit Sub
If Target <> "" Then [COLOR=red]Range("I65536").End(3).Offset(1, 0) = Target[/COLOR]
End Sub
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A3:E65536")) Is Nothing Then Exit Sub
If Target <> "" Then [COLOR=red]Range("I3") = Target[/COLOR]
End Sub