Range(Selection, Selection.End(xlDown)).Select ile ilgili bir soru

Katılım
12 Nisan 2011
Mesajlar
190
Excel Vers. ve Dili
2010-TR

Korhan Ayhan

Administrator
Yönetici
Admin
Katılım
15 Mart 2005
Mesajlar
43,011
Excel Vers. ve Dili
Microsoft 365 Tr-En 64 Bit
Deneyiniz...

Kod:
Sub SEÇ()
    On Error Resume Next
    Son = Range("A:A").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    On Error GoTo 0
    If Son <> 0 Then Range("A1:A" & Son).Select
End Sub
 
Katılım
12 Nisan 2011
Mesajlar
190
Excel Vers. ve Dili
2010-TR
Deneyiniz...

Kod:
Sub SEÇ()
    On Error Resume Next
    Son = Range("A:A").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    On Error GoTo 0
    If Son <> 0 Then Range("A1:A" & Son).Select
End Sub
Teşekkürler.
 
Üst