What command should I use in an Excel visual basic macro to move the current cell to the left by 1
P Paul Bond Aug 5, 2008 #1 What command should I use in an Excel visual basic macro to move the current cell to the left by 1
G Gary''s Student Aug 5, 2008 #3 Sub Macro1() ActiveCell.Cut ActiveCell.Offset(0, -1).Select ActiveSheet.Paste End Sub