- Katılım
- 11 Temmuz 2009
- Mesajlar
- 225
- Excel Vers. ve Dili
- Excel 2013 Türkçe (64 Bit)
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Column > 3 Then Exit Sub
If Sh.Name = "LİST" Then Exit Sub
x1 = Sh.[a65536].End(3).Row
x2 = Sheets("LİST").[a65536].End(3).Row + 1
If WorksheetFunction.CountA(Rows(x1)) = 3 Then
Sheets("LİST").Rows(x2) = Sh.Rows(x1).Value
End If
End Sub