I have this small code which cuts and pastes a cell to another cell if the cell has an empty adjacent cell. But every time I run this code, it usually takes more than a minute to finish the entire column. Here's my small code.
Sub MoveCell()
Dim A As Range
For Each A In Range("B10:B1000")
If A <> "" Then
If A.Offset(0,2) = "" Then
A.Cut A.Offset(0,4)
End If
End If
Next
End Sub
Is there a way around this code?