Try this
Sub FillBlanks()
Dim LastRow As Long, ThisRow As Long
Dim LastName
LastRow = Range("B" & Rows.Count).End(xlUp).Row
For ThisRow = 2 To LastRow - 1
LastName = Cells(ThisRow, 1)
If Cells(ThisRow + 1, 1) = "" Then
Cells(ThisRow + 1, 1) = LastName
End If
Next
End Sub
Hope this helps
If this takes care of your needs, please click EDIT in your original post, click GO ADVANCED and set the PREFIX box to SOLVED. It helps everybody!
Also
If you are satisfied by any members response to your problem please consider using the scales icon top right of thier post to show your appreciation.
Bookmarks