Hi,
Try:
VB:Sub HTH() Dim RowNo As Long, LastRow As Long With Worksheets(1) LastRow = .Range("B" & Rows.Count).End(xlUp).Row Do Set c = .Columns(1).Find("", after:=.[A2], LookIn:=xlValues) If c Is Nothing Or c.Row > LastRow Then Exit Do c.Value = c.Offset(-1).Value Loop End With End Sub


Reply With Quote

Bookmarks