DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Sil()
Application.ScreenUpdating = False
Set S1 = Sheets("Sayfa2")
S1.Range("A1:V65536").ClearContents
Dim i As Integer
Dim c As Range
son = [A65536].End(3).Row
Range("A4:V" & son).Copy S1.Range("A1")
For i = 1 To 22
Set c = Range("A4:V" & son).Find(Cells(1, i), LookIn:=xlValues, LookAt:=xlWhole)
If Not c Is Nothing Then c.ClearContents
Next i
Application.ScreenUpdating = True
End Sub
Sub GeriGetir()
Application.ScreenUpdating = False
Set S1 = Sheets("Sayfa2")
son = S1.[A65536].End(3).Row
S1.Range("A1:V" & son).Copy Range("A4")
Application.ScreenUpdating = True
End Sub
Option Explicit
Sub SİL()
Dim X As Byte
For X = 1 To 22
Range("A4:V65536").Replace What:=Cells(1, X), Replacement:="", LookAt:=xlWhole, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub