DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub SATIR_EKLE()
Dim X
For X = Cells(Rows.Count, "A").End(3).Row To 2 Step -1
If Cells(X, "B") > 0 Then
Cells(X + 1, "A").Resize(Cells(X, "B")).EntireRow.Insert
End If
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub
Sub ekle()
son = [A65536].End(3).Row
For Z = son To 2 Step -1
If Cells(Z, "b") <> "" Then n = Cells(Z, "b")
For t = 1 To n
Rows(Z + 1).Insert
Next
Next
End Sub
Sub SATIR_EKLE()
Dim X
For X = Cells(Rows.Count, "A").End(3).Row To 2 Step -1
If Cells(X, "C") > 0 Then
Cells(X + 1, "A").Resize(Cells(X, "C")).EntireRow.Insert
Cells(X, "A").AutoFill Destination:=Range("A" & X & ":A" & X + Cells(X, "C")), Type:=xlFillDefault
Range("B" & X & ":B" & X + Cells(X, "C")).DataSeries Rowcol:=xlColumns, Type:=xlLinear, Date:=xlDay, Step:=1, Trend:=False
Range("C" & X & ":C" & X + Cells(X, "C")).Borders.LineStyle = 1
End If
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub