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 Intersect([C:D], target) Is Nothing Then Exit Sub
ilk = 1
son = Cells(Rows.Count, "C").End(xlUp).Row
For i = ilk To son
Cells(i, 5) = Cells(i, 3)
Cells(i, 6) = Cells(i, 4)
Next i
End Sub
Private Sub worksheet_change(ByVal target As Range)
If Intersect([C:D], target) Is Nothing Then Exit Sub
target.Offset(0, 2) = target
End Sub