Hi FFarah,
this is another version
Sub UpdateUnit()
Dim urF As Long
Dim Row As Long
urF = Cells(Rows.Count, "F").End(xlUp).Row ' last row in column "F"
Row = 6 ' starting row
Application.ScreenUpdating = False ' disable screen update
Do While Row <= urF
If Len(Cells(Row, 3).Text) = 0 Then
Cells(Row - 1, 3).Copy Cells(Row, 3)
End If
Row = Row + 1
Loop
Application.ScreenUpdating = True ' enable screen update
End Sub
Try and let us know.
Bye
P.S.: if you want only value of cell, modify
Cells(Row - 1, 3).Copy Cells(Row, 3)
with
Cells(Row - 1, 3).Value = Cells(Row, 3).Value
Bookmarks