Hi
This is ahmad, My question is "How can i move one column to the right "
Sub Macro5()
'
' Macro5 Macro
' Macro recorded 6/2/2007 by Administrator
'
'
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Cut
Selection.End(xlUp).Select
Selection.End(xlToRight).Select
it should move one column towards right before pasting
ActiveSheet.Paste
End Sub