DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Deneyiniz..merhaba, ben bu kodu kullanarak a2 hücresini e ye kopyalıyorum ama aynı zamanda b8 hücresinide kopyalamak istiyorum. yardımcı olabilirmisiniz
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then
For i = 1 To Range("e65535").End(xlUp).Offset(1, 0).Row
If Range("e" + CStr(i)).Value = "" Then
Range("e" + CStr(i)).Value = Target.Value
Exit For
End If
Next i
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Or Target.Address = "$B$8" Then
For i = 1 To Range("e65535").End(xlUp).Offset(1, 0).Row
If Range("e" + CStr(i)).Value = "" Then
Range("e" + CStr(i)).Value = Target.Value
Exit For
End If
Next i
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Or Target.Address = "$B$8" Then
Cells(Cells(Rows.Count, "E").End(3).Row + 1, "E") = Target
End If
End Sub
Deneyiniz..
Kod:Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$2" Or Target.Address = "$B$8" Then For i = 1 To Range("e65535").End(xlUp).Offset(1, 0).Row If Range("e" + CStr(i)).Value = "" Then Range("e" + CStr(i)).Value = Target.Value Exit For End If Next i End If End Sub
Ayrıca alternatif olarak aşağıdaki kodlar ile de aynı işlemi yapabilirsiniz.
[/QUOTEKod:Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$2" Or Target.Address = "$B$8" Then Cells(Cells(Rows.Count, "E").End(3).Row + 1, "E") = Target End If End Sub
merhaba ilginize teşekkür ederim. sadece b8'i f sütununa kopyalamak istiyoruz. naasıl yapabiliriz.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$8" Then
Cells(Cells(Rows.Count, "F").End(3).Row + 1, "F") = Target
End If
End Sub