187

I have to do some manual reordering or rows in Excel and cut/paste is too hard to use. I'm looking for something that would enable me to use drag'n'drop or to add some buttons to move-up/down move-top/bottom.

Linker3000
  • 28,240
sorin
  • 12,189

10 Answers10

272
  1. Select the row/column.
  2. Move your mouse cursor to the row/column's boundary so that you see the four-way-arrow cursor (or hand cursor on a Mac).
  3. Press Shift on your keyboard, then click and drag the row/column.

The Shift key shifts the row/column instead of overwriting the target row/column.

kok
  • 2,729
19

This is still a cut/paste method, but is the simplest way I can think of.

4-click solution: (eg. move row 8 above row 5)

  1. Right click row number (eg. row 8), click Cut (or T)
  2. Right click row number (eg. row 5), click Insert Cut Cells (or E)

Note: This also works for moving multiple rows.

wilson
  • 5,222
5

For snobs like me who want to use keyboard only:

  1. Select the cells you want to move (rows or columns, or any rectangle of cells, but the selection must be contiguous)
  2. Press Ctrl+x (Ctrl+c would let you make two copies.)
  3. Move to or select the cell immediately after where you want to move the content (below it, or to the right.) This cell will not move.
  4. Press Ctrl++. This will shift cells down or to the right. (Ctrl+v would overwrite cells instead.)

On the Mac, all of these shortcuts work the same with either Ctrl or .

mattboy
  • 206
4

Add the following macros to your Personal Macro Workbook and assign them shortcut keys. The behaviour mimics Sublime Text's Swap Line Up & Swap Line Down.

Sub move_rows_down()
    Dim rOriginalSelection As Range
    Set rOriginalSelection = Selection.EntireRow
    With rOriginalSelection
        .Select
        .Cut
        .Offset(rOriginalSelection.rows.Count + 1, 0).Select
    End With
    Selection.Insert
    rOriginalSelection.Select
End Sub

Sub move_rows_up()
    Dim rOriginalSelection As Range
    Set rOriginalSelection = Selection.EntireRow
    With rOriginalSelection
        .Select
        .Cut
        .Offset(-1, 0).Select
    End With
    Selection.Insert
    rOriginalSelection.Select
End Sub
tjmcewan
  • 418
2

In dealing with similar cases in the past, where I could not just sort by a row, I found way to generate a column with a formula result that was something I could sort on.

I found a more direct answer to your question from this site:

Microsoft Word has a feature which Excel is lacking. Jon's method involves moving the data to Word, employing the Word command and then pasting the data back to Excel. Follow these steps.

  1. Copy the relevant chunk of rows and columns out of your speadsheet. It is best to note the size of the range, e.g., 118 rows x 5 columns
  2. Paste the data into a Microsoft Word document, where it automatically becomes a table and retains all your formatting.
  3. In Word, use the little-known SHIFT-ALT-UP-ARROW and SHIFT-ALT-DOWN-ARROW to very speedily slide rows (or selected chunks of rows) up and down at will. Select one or more rows. You can select the entire row or just a portion of the row as shown here.

    enter image description here

    Hit Shift+Alt+UpArrow several times in order to quickly slide the rows up into position.

    enter image description here

  4. When you have sequenced the rows as you like, paste them back into Excel, making sure you overwrite the exact same size chunk you copied.

Gareth
  • 19,080
jzd
  • 328
2

In Mac, use Command + Shift while dragging. I suppose that in windows it should be Win + Shift.

Marko
  • 304
  • 4
  • 6
  • 19
pablol
  • 21
2

Try:

Shift + Space bar or mouse click on the line number to select the line

Ctrl + X to cut

Mouse click where you want it.

Ctrl + V to paste it

Excellll
  • 12,847
Graham
  • 65
1

A slight improvement on @wilson's answer:

Right click row number (eg. row 8), hit "t" Right click row number (eg. row 5), hit "e"

Mixing use of the mouse and keyboard really speeds it up for me.

1

Here is a sub that also works for columns; it combines the functionality for all four directions:

Sub MoveRowsOrColumns(direction As String)
    Dim rOriginalSelection As Range

    Select Case direction
    Case "up", "down"
        Set rOriginalSelection = Selection.EntireRow
    Case "left", "right"
        Set rOriginalSelection = Selection.EntireColumn
    Case Else
        Debug.Assert False
    End Select

    With rOriginalSelection
        .Select
        .Cut
        Select Case direction
        Case "up"
            .Offset(-1, 0).Select
        Case "down"
            .Offset(rOriginalSelection.Rows.Count + 1, 0).Select
        Case "left"
            .Offset(0, -1).Select
        Case "right"
            .Offset(0, rOriginalSelection.Columns.Count + 1).Select
        End Select
    End With
    Selection.Insert
    rOriginalSelection.Select
End Sub
Mokubai
  • 95,412
-1

This is the easiest one I found. Can't really drag and drop:

For example to move row 3 before row 2:

  • right click on row 3 (on the number 3 at left) and select Cut
  • right click on row 2 (on the number 2) and select Insert Cut Cells
mrudult
  • 334