+ Reply to Thread
Results 1 to 4 of 4

VB code for Moving Rows up and down

  1. #1
    Registered User
    Join Date
    10-11-2004
    Posts
    5

    VB code for Moving Rows up and down

    Hi, I have tried a search but could not find what I am looking for.

    I have a spreadsheet and would like to be able to move rows up and down at the press of a button, so if I wanted to move row 20 to row 19, highlighting a cell in row 20 and then a click of a button would swap the two rows, I could then carry on and move the row all the way to the top if need be.

    Is this too much to ask?

    Any suggestions would be much appreciated.

    Regards

    Andy
    Last edited by AndyR; 08-09-2005 at 11:35 PM. Reason: spelling

  2. #2
    Registered User
    Join Date
    10-11-2004
    Posts
    5

    What I have done,...

    Maybe a bit hasty psoting the message above, after sitting down and trying it out this simple code seems to work, can anyone see any tidying up or glaring ommissions that I have made?

    Cheers

    Andy

    Sub MoveDown()

    Selection.EntireRow.Select
    Selection.Cut
    ActiveCell.Offset(2, 0).Range("A1").Select
    Selection.EntireRow.Select
    Selection.Insert Shift:=xlDown
    ActiveCell.Offset(-1, 0).Range("A1").Select

    End Sub

    Sub MoveUp()

    Selection.EntireRow.Select
    Selection.Cut
    ActiveCell.Offset(-1, 0).Range("A1").Select
    Selection.EntireRow.Select
    Selection.Insert Shift:=xlDown

    End Sub

  3. #3
    anthony rose
    Guest

    Re: VB code for Moving Rows up and down

    Hi, I'm not trained in VB so may be missing something but this seems tider
    because it doesn't change the user's selection and has less lines. Also it
    checks for top row.

    Sub MoveDown()

    Range(ActiveCell.Row + 1 & ":" & ActiveCell.Row + 1).Cut 'Cut row below
    ActiveCell.EntireRow.Insert Shift:=xlDown 'Paste
    ActiveCell.Offset(1, 0).Select 'Move down to it

    End Sub


    Sub MoveUp()

    If ActiveCell.Row > 1 Then
    Range(ActiveCell.Row & ":" & ActiveCell.Row).Cut 'Cut active row
    ActiveCell.Offset(-1, 0).Select 'Move up a row
    ActiveCell.EntireRow.Insert Shift:=xlDown 'Paste
    End If

    End Sub

  4. #4
    Registered User
    Join Date
    10-05-2010
    Location
    Israel
    MS-Off Ver
    Excel 2013
    Posts
    11

    Re: VB code for Moving Rows up and down

    I was looking for this too, plus I wanted to assign the macros to the same keystrokes that Word uses for the equivalent functionality.

    Here's what I ended up with.

    Please Login or Register  to view this content.
    The comment lines show where I found the information.

    Does the forum have a library of macros where I could put this for the convenient use of others?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1