Moving selection right one column at a time: Is there a shortcut?

  • Thread starter Thread starter RD
  • Start date Start date
R

RD

After selecting some cells in a column how can I move the entire selection
(not the content, just the selection) in the next column on the right? In the
Excel for mac there is the ALT+TAB shortcut. Is there something similar for
the pc version?
Thanks
 
You can write a macro to do that, then assign that macro to a short-cut key
like Ctrl-Shift-X. An example is below. HTH Otto
Sub MoveSelection()
Selection.Offset(, 1).Select
End Sub
 
Back
Top