DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub duzenle()
Application.ScreenUpdating = False
Sheets("sayfa1").Copy after:=Sheets("sayfa1")
While Cells(1, 4) = ""
Rows(1).Delete shift:=xlUp
Wend
For i = Cells(Rows.Count, 1).End(3).Row To 2 Step -1
If Cells(i, 3) = "" _
Or Cells(i, 1) Like "HESAP*" _
Or Cells(i, 1) Like "--*" _
Or Cells(i, 1) Like "KASA*" _
Then Rows(i).Delete shift:=xlUp
Next i
Range("A1").CurrentRegion.SpecialCells(xlCellTypeBlanks).Formula = "=R[-1]C"
With Range("A1").CurrentRegion
.Copy
.PasteSpecial Paste:=xlPasteValues
End With
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub