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

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
 
O

Otto Moehrbach

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top