DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Ornek()
Dim i As Long
Range("B:B").ClearContents
i = 1
Do
Range("B" & i & ":B" & i + Range("A" & i).MergeArea.Count - 1) = Range("A" & i)
i = Cells(i, "A").End(4).Row
Loop Until Cells(i, "A") = ""
End Sub
Sub KOD()
Application.ScreenUpdating = False
Range("A" & [A65536].End(3).Row).Select
With Selection
ilk_sat = .Row
son_sat = .Rows.Count + ilk_sat - 1
End With
Range("A1:A" & son_sat).Select
Selection.UnMerge
For i = 1 To son_sat
If Cells(i, "A") = "" Then
Cells(i, "A") = Cells(i - 1, "A")
Else
End If
Next i
Range("A1").Select
Application.ScreenUpdating = True
MsgBox " B i t t i "
End Sub
Sub Ornek()
Dim i As Long
i = Cells(Rows.Count, "A").End(3).Row
i = i + Range("A" & i).MergeArea.Count - 1
Range("A:A").UnMerge
Range("A1:A" & i).SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=R[-1]C"
With Range("A1:A" & i)
.Copy
.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End With
Application.CutCopyMode = False
Range("A1").Activate
End Sub