A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Assign the following macro to a command button from the Form Controls section:
Sub MoveData()
Dim r As Long
Dim m As Long
Application.ScreenUpdating = False
m = Range("A" & Rows.Count).End(xlUp).Row
For r = 2 To m
If Range("A" & r).Value <> "" Then
Range("B" & r).Value = Range("A" & r).Value
End If
Next r
Application.ScreenUpdating = True
End Sub