http://www.youtube.com/watch?v=ohKcBRF2YYM
or
Sub FillSelectionBlanksBelow()
Dim Cell As Range
For Each Cell In Selection
If Cell.Value = "" Then Cell.Value = Cell.Offset(-1, 0).Value
Next Cell
End Sub
On Dec 19, 2:14*pm, Toby <tobyta...@gmail.com> wrote:
> Using Excel 2010.
>
> I have text "A" in row 2, then blank spaces until row 13. Row 13 has text"B." Then I have 11 spaces until Row 24, which is text "C". I want the spaces to be filled by the preceding "label" (A, B, C).
>
> I only wish to perform this operation on Column A while keeping all othercolumns locked. Thank you very much in advance!