DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
sonsat = Range("a65536").End(3).Row
If Selection.Row <> "18" Then
Rows(sonsat).Select
Selection.ClearContents
Else: End If
. . .
Kod:sonsat = Range("a65536").End(3).Row If Selection.Row <> "18" Then Rows(sonsat).Select Selection.ClearContents Else: End If
. . .
Sub sil()
sonsat = Range("A65536").End(3).Row
If sonsat <> 18 Then Rows(sonsat).ClearContents
'Üst satır içeriği temizler, Alt satır ilgili satırı siler _
ikisinden birini kullanıp diğerini silebilirsiniz.
If sonsat <> 18 Then Rows(sonsat).Delete Shift:=xlUp
End Sub
Bu oldu teşekkür ederimMerhaba,
Bir de bunu dener misiniz?
Kod:Sub sil() sonsat = Range("A65536").End(3).Row If sonsat <> 18 Then Rows(sonsat).ClearContents 'Üst satır içeriği temizler, Alt satır ilgili satırı siler _ ikisinden birini kullanıp diğerini silebilirsiniz. If sonsat <> 18 Then Rows(sonsat).Delete Shift:=xlUp End Sub