How to easily reorder rows in excel with drag and drop or move-up or move-down?

148

32

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.

sorin

Posted 2011-02-24T11:24:43.033

Reputation: 9 439

Answers

216

  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

Posted 2011-02-24T11:24:43.033

Reputation: 2 161

2I have Excel 2013 and it seems the default behavior now when you move a row after seeing four-way-arrow cursor is shifting behavior. Pressing SHIFT actual replaces destination row – Korayem – 2015-06-30T21:31:27.077

I have Office365 (so I think I have whatever is latest version of Excel at time of post - I can't find a proper version number anywhere). Selecting ANY group of cells (not just rows/columns), moving to border to get 4-way arrow, and dragging moves data around - leaving an empty hole behind. Dropping it warns on overwrite. Shift+dragging attempts to reorder rows or columns, but only if full row/column selected. "Full" = all of some rectangular area - not necessarily full spreadsheet. // Confusion: must hover over boundary of data cells, not the row number or column letter - that resizes. – Krazy Glew – 2017-07-18T18:19:15.870

1Does anyone know of a shortcut to get this "4-way arrow" - keyboard shortcut, or a macro / Visual Basic (or whatever the new macro language is called)? I find it really hard to do this precisely with a mouse, let alone on a touchscreen or with a pen. Ideally I would like to have a "thumb" to drag rows and columns around like this. – Krazy Glew – 2017-07-18T18:21:37.560

1Does anyone know how to do this Google Sheets? – Krazy Glew – 2017-07-18T18:41:34.153

In Google Spreadsheet you can easily drag and drop rows and columns just selecting them and dragging from the number/letter. – soneangel – 2017-08-23T07:17:05.443

kok made one awesome answer and was never seen again! Who was that masked man? – CindyH – 2018-08-29T20:25:18.363

As @Korayem commented above, pressing SHIFT actually defaults to overwrite-mode on my environment (Office 365 ProPlus). Left-clicking the four-way-arrow (without SHIFT) actually does the row moving without overwriting. – satoc – 2019-04-19T06:42:55.957

Unfortunately Excel does not allow this when the row/column to be moved contains a merged cell. It does not matter if the destination place would contain the same merged cell. – pabouk – 2019-10-14T08:57:51.733

SHUT UP AND TAKE MY UP VOTE! – mattboy – 2019-11-15T07:28:06.950

19On mac, for step two you want to move your mouse cursor so that you see the hand icon, not the four-way-arrow cursor. – Scott Ritchie – 2014-06-12T02:11:05.977

14

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

Posted 2011-02-24T11:24:43.033

Reputation: 4 113

This is a mouse-only solution without drag-and-drop, so that it is good at moving rows to further position which need scrolling. Otherwise, @kok's answer is more elegant.

– wilson – 2016-03-30T09:05:07.270

thanks, also this still worked for me, kok's is better but iitially a bit longer to understand and one has to see the boundary button although its not necesarilly harder, one has to get used to it – FantomX1 – 2019-09-04T14:47:26.590

3

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

Posted 2011-02-24T11:24:43.033

Reputation: 366

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.

jzd

Posted 2011-02-24T11:24:43.033

Reputation: 328

Sweet! I do wish there was a way to do this in Excel or OneNote. // (Excel does special mouse drags, as noted above, but I lack mouse.coordination for this.) // It is unfortunate that one gives up other Excel goodness, like table sorting by column values, to get this word goodness – Krazy Glew – 2017-07-18T18:27:46.983

2

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

pablol

Posted 2011-02-24T11:24:43.033

Reputation: 21

1

For snobs like me who wants to use keyboard only:

  1. Select the cells you want to move (doesn't necessarily need to be a complete row for this)
  2. Move to the cell immediately below the one you want to move the content to
  3. Press ctrl-+

mattboy

Posted 2011-02-24T11:24:43.033

Reputation: 166

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.

Codemonkey

Posted 2011-02-24T11:24:43.033

Reputation: 321

1

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

Graham

Posted 2011-02-24T11:24:43.033

Reputation: 55

3incorrect answer. this will replace instead of reorder – wilson – 2016-10-28T02:26:53.920

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

Micromegas

Posted 2011-02-24T11:24:43.033

Reputation: 11

-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

Posted 2011-02-24T11:24:43.033

Reputation: 304