filter

Katılım
16 Haziran 2008
Mesajlar
32
Excel Vers. ve Dili
ingilizce 2003
slm
sheet 2 de bulunan personel listesini sheet 1 deki filtre uygulasi ile personel listesi sheet 1 de bulunan yerlere yazdirmayi nasil saglayabiliriz?
Tesekkurler
 

N.Ziya Hiçdurmaz

Özel Üye
Katılım
28 Nisan 2007
Mesajlar
2,218
Excel Vers. ve Dili
Office 2013 TR / 32 Bit
Yanıt

Kod:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim SON As Integer
Dim S1 As Worksheet
If Intersect(Target, [B2:B1000]) Is Nothing Then Exit Sub
Set S1 = Sheet1
SON = S1.Cells(65536, "A").End(3).Row + 1
S1.Cells(SON, "A") = Target
Set S1 = Nothing
End Sub
 
Katılım
16 Haziran 2008
Mesajlar
32
Excel Vers. ve Dili
ingilizce 2003
Cok Tesekkurler:)
 
Üst