Closed Thread
Results 1 to 2 of 2

VBA to move rows to end of sheet based on cell contents

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    07-03-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    139

    VBA to move rows to end of sheet based on cell contents

    Hello All,

    I have a block of code that basically searches for the word Constellation in col G and if found moves the entire row to the end of the sheet. HOWEVER the way I am going about this seems to be long and not very efficient. Pasted below is my code, could someone out there possibly give some advice on how to do this in a more efficient manner?

    Sub FltrConst()
    
    Sheets.Add.Name = "Const"
    Sheets("HH_Samples").Activate
    
    Dim LR As Long
    
    Range("G1").AutoFilter
    Range("G1").AutoFilter Field:=7, Criteria1:="=*Constellation*"
    LR = Range("A" & Rows.Count).End(xlUp).Row
    
    
    If LR > 1 Then Range("A2:T" & LR).Copy Sheets("Const").Range("A1")
    
    Rows("2:" & LR).Delete Shift:=xlUp
    Range("G1").AutoFilter
    
    ThisWorkbook.Save
    
    Sheets("HH_Samples").Activate
    LastRow = Cells(Rows.Count, "I").End(xlUp).Row
    Sheets("Const").Activate
    LR = Range("A" & Rows.Count).End(xlUp).Row
    If LR > 1 Then Range("A1:T" & LR).Copy Sheets("HH_Samples").Range("A" & LastRow + 1)
    
    Application.DisplayAlerts = False
    Sheets("Const").Delete
    Application.DisplayAlerts = True
    
    Range("A1").Select
    
    End Sub
    Thank You

  2. #2
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: VBA to move rows to end of sheet based on cell contents

    This is a duplicate post and as such does not comply with Rule 5 of our forum rules. This thread will now be closed, you may continue in your other thread.

    Thread Closed.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

Closed Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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