I am trying to copy a row to the below blank row. I have the below macro that works for cells but can't seem to modify to copy the entire row. any help would be appreciated...
ub FillBlankCellsFromCellAbove()
Application.ScreenUpdating = False
Dim cell As Object
Set rng = Range("a3:a" & Range("b65536").End(xlUp).Row)
For Each cell In rng
If cell.Value = "" Then
cell.Value = cell.Offset(-1, 0).Value
r1 = cell.Value
cell.Value = r1
Else: End If
Next cell
Application.ScreenUpdating = True
End Sub
ub FillBlankCellsFromCellAbove()
Application.ScreenUpdating = False
Dim cell As Object
Set rng = Range("a3:a" & Range("b65536").End(xlUp).Row)
For Each cell In rng
If cell.Value = "" Then
cell.Value = cell.Offset(-1, 0).Value
r1 = cell.Value
cell.Value = r1
Else: End If
Next cell
Application.ScreenUpdating = True
End Sub