Excel Macros

P

Paul Bond

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

Sub Macro1()
ActiveCell.Cut
ActiveCell.Offset(0, -1).Select
ActiveSheet.Paste
End Sub
 
Top