lovecaroline
Altın Üye
- Katılım
- 21 Mayıs 2014
- Mesajlar
- 78
- Excel Vers. ve Dili
- 2013 (64 Bit)
2010 (64 bit)
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi


Sub test()
Dim area
With Range("A1:A" & Cells(Rows.Count, 1).End(3).Row).Offset(, 1)
If WorksheetFunction.CountBlank(.Cells) > 0 Then
For Each area In .SpecialCells(xlCellTypeBlanks).Areas
With area.Offset(-1).Resize(area.Cells.Count + 1)
.Cells(1).AutoFill Destination:=Range(.Address), Type:=2
End With
Next area
End If
End With
End Sub