+ Reply to Thread
Results 1 to 12 of 12

Excel Programming Help - Move Rows

Hybrid View

  1. #1
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7

    Excel Programming Help - Move Rows

    Good day, the issue I am needing help with is the following.

    I have a workbook with 5 sheets in it (new, delayed, in process, completed, and cancelled). In each of those sheets is a column named "Status" (all sheets are column F). What I want to do, is have all the sheets do something the same....when the status is changed from "new" to "delayed", I want the row to move from the "new" sheet to the "delayed" sheet. When column F is changed from "XXXXX" to "XXXXX" I want it to be automatically moved from the sheet is is on, to the sheet that corresponds with its status.

    Can anyone help me with this?

  2. #2
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7

    Re: Excel Programming Help - Move Rows

    To add on to this, I do not want a macro I have to run, I want the workbook to do this automatically when the status is changed.

  3. #3
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Excel Programming Help - Move Rows

    Is the status changed manually or is it the result of a formula?
    You can say "THANK YOU" for help received by clicking the Star symbol at the bottom left of the helper's post.
    Practice makes perfect. I'm very far from perfect so I'm still practising.

  4. #4
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7
    Quote Originally Posted by Mumps1 View Post
    Is the status changed manually or is it the result of a formula?
    Manually using a list

  5. #5
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Excel Programming Help - Move Rows

    I know that you said that you "do not want a macro I have to run". This macro will run automatically when you change the status in column F of the "new" sheet. Copy and paste this macro into the worksheet code module. Do the following: right click the tab for your "new" sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. Change the status in column F and that row will be copied to the appropriate sheet and deleted from the "new' sheet.
    Private Sub Worksheet_Change(ByVal Target As Range)
        If Intersect(Target, Range("F:F")) Is Nothing Then Exit Sub
        Application.EnableEvents = False
        Application.ScreenUpdating = False
        Select Case Target.Value
        Case "delayed", "in process", "completed", "cancelled"
            Target.EntireRow.Copy Sheets(Target.Value).Cells(Sheets(Target.Value).Rows.Count, "A").End(xlUp).Offset(1, 0)
            Target.EntireRow.Delete
        End Select
        Application.EnableEvents = True
        Application.ScreenUpdating = True
    End Sub
    The macro uses all lower case letters for your sheet names as you described in your original post. If this is not the case, change the sheet names in the code to match yours.

  6. #6
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7

    Re: Excel Programming Help - Move Rows

    Mumps1:

    Thank you for your quick response; however, when I follow your instructions, it still does not work. I pasted the code, and when I go to row F and click the drop down to select "XXX" (status), it does not copy or delete.

  7. #7
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Excel Programming Help - Move Rows

    Can you attach a copy of your file? De-sensitize it if necessary. It is always easiest to test possible solutions on the actual file.

  8. #8
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7

    Re: Excel Programming Help - Move Rows

    It is attached now.
    Attached Files Attached Files

  9. #9
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Excel Programming Help - Move Rows

    Try:
    Private Sub Worksheet_Change(ByVal Target As Range)
        If Intersect(Target, Range("F:F")) Is Nothing Then Exit Sub
        Application.EnableEvents = False
        Application.ScreenUpdating = False
        Dim LastRow As Long
        Select Case Target.Value
        Case "Delayed", "In Process", "Completed", "Cancelled"
            LastRow = Sheets(Target.Value).Range("A:A").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
            Target.EntireRow.Copy Sheets(Target.Value).Range("A" & LastRow + 1)
            Target.EntireRow.Delete
        End Select
        Application.EnableEvents = True
        Application.ScreenUpdating = True
    End Sub
    Your drop down list has the sheet name "In Progress" while the actual sheet name is "In Process". In the macro, I have used "In Process" as the sheet name. If you want to use "In Process" as the name, you will have to change your drop down list to match.

  10. #10
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7

    Re: Excel Programming Help - Move Rows

    Quote Originally Posted by Mumps1 View Post
    Try:
    Private Sub Worksheet_Change(ByVal Target As Range)
        If Intersect(Target, Range("F:F")) Is Nothing Then Exit Sub
        Application.EnableEvents = False
        Application.ScreenUpdating = False
        Dim LastRow As Long
        Select Case Target.Value
        Case "Delayed", "In Process", "Completed", "Cancelled"
            LastRow = Sheets(Target.Value).Range("A:A").Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
            Target.EntireRow.Copy Sheets(Target.Value).Range("A" & LastRow + 1)
            Target.EntireRow.Delete
        End Select
        Application.EnableEvents = True
        Application.ScreenUpdating = True
    End Sub
    Your drop down list has the sheet name "In Progress" while the actual sheet name is "In Process". In the macro, I have used "In Process" as the sheet name. If you want to use "In Process" as the name, you will have to change your drop down list to match.
    Sorry, good catch. That worked...but I do have an addition to that. Is there a way to have the rows move in any sheet once the status is changed to the corresponding sheet? For instance, if it is is new > status changed to in progress > row moves to in progress.....once the task is complete > move status to completed > row automatically moves to completed sheet.

  11. #11
    Registered User
    Join Date
    01-08-2018
    Location
    Dallas, Texas
    MS-Off Ver
    2016
    Posts
    7

    Re: Excel Programming Help - Move Rows

    I hate to be the bearer of bad news, but it was working initially, but for some reason it is not working now.
    Attached Files Attached Files

  12. #12
    Forum Expert Mumps1's Avatar
    Join Date
    10-10-2012
    Location
    Toronto, Canada
    MS-Off Ver
    Excel 2010, 365
    Posts
    8,027

    Re: Excel Programming Help - Move Rows

    Try the attached file. I have moved the Worksheet_Change macro from the "New" Worksheet code module to the code module for ThisWorkbook. In this way, the macro will be triggered on all the sheets instead of just the "New" sheet. Also, I have added error tracking to the macro. The reason for this is that if the macro errors out before it can finish running, the line "Application.EnableEvents = True" (it was set to "False" at the beginning of the macro) does not get executed which means that macros are disabled and the next time you make a selection in the drop down, nothing happens. Now if the macro errors out, it will go to "Application.EnableEvents = True" which re-enables the macros for the next time you make a selection. I hope this makes sense.
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Adding new column to the existing VBA code
    By Alcotraz in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-01-2015, 05:43 PM
  2. [SOLVED] Macro to Move Rows to New Worksheets Based on Criteria & Then HIDE & Move Back
    By abro0821 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-22-2014, 04:00 PM
  3. [SOLVED] Macros To Move Multiple Rows To Another Sheet And Macro To Move Single Rows To DAX Table
    By jcaynes in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 10-22-2013, 05:08 PM
  4. Excel 2007 : move to programming
    By amm43q in forum Excel General
    Replies: 1
    Last Post: 03-25-2011, 01:43 AM
  5. [SOLVED] Can I move down 12 rows in excel for every new entry
    By Mickey in forum Excel - New Users/Basics
    Replies: 1
    Last Post: 05-05-2006, 11:10 AM
  6. [SOLVED] Excel VBA Programming...How to Trigger an Event WhenYou Move Off a Cell
    By samadams_2006@yahoo.ca in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-17-2006, 06:15 PM
  7. Problems Programming a sort to move rows
    By Jordan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-22-2006, 08:50 AM

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