Moving Entire Row at the bottom of the page.

TryingBest

New Member
Joined
Aug 2, 2022
Messages
30
Office Version
  1. 2016
Platform
  1. Windows
Hi,
I am new to this amazing forum where great help is offered.
I wanted to move an entire row at the bottom of the page based on a specific word/criteria match in a column. I found this piece of code and implemented it, which works great.
But, running into an issue, if the word is not matched it gives a debug error - rather than moving on to the next search item in the list.

I am very much new to this coding/VBA, so asking for help. Code is pasted below.
If 'abc' is not in column C, it gives an error and not moving on to the next item 'xyz'


VBA Code:
Sub MoveRows()
   Dim rng As Range
   With Range("C:C")
      .Replace "abc", "=Xabx", xlWhole, , False, , False, False
      Set rng = .SpecialCells(xlFormulas, xlErrors)
      .Replace "=Xabc", "abc", xlWhole, , False, , False, False
      rng.EntireRow.Copy Range("A" & Rows.Count).End(xlUp).Offset(2)
      rng.EntireRow.Delete
   End With
  
   With Range("C:C")
      .Replace "xyz", "=Xxyz", xlWhole, , False, , False, False
      Set rng = .SpecialCells(xlFormulas, xlErrors)
      .Replace "=Xxyz", "xyz", xlWhole, , False, , False, False
      rng.EntireRow.Copy Range("A" & Rows.Count).End(xlUp).Offset(2)
      rng.EntireRow.Delete
   End With
  
End Sub
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi,
does this cure your issue please ?

thanks
Rob

VBA Code:
Sub MoveRows()
Dim rng As Range
With Range("C:C")
.Replace "abc", "=Xabx", xlWhole, , False, , False, False
On Error Resume Next
Set rng = .SpecialCells(xlFormulas, xlErrors)
    If Not rng Is Nothing Then
        .Replace "=Xabc", "abc", xlWhole, , False, , False, False
        rng.EntireRow.Copy Range("A" & Rows.Count).End(xlUp).Offset(2)
        rng.EntireRow.Delete
    End If
End With
 
Upvote 0
It would be easier to help if you could use the XL2BB add-in (icon in the menu) to attach a screenshot (not a picture) of your sheet. Alternately, you could upload a copy of your file to a free site such as www.box.com or www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here. Explain in detail what you want to do referring to specific cells, rows, columns and sheets using a few examples from your data (de-sensitized if necessary).
 
Upvote 0
Hi,
does this cure your issue please ?

thanks
Rob

VBA Code:
Sub MoveRows()
Dim rng As Range
With Range("C:C")
.Replace "abc", "=Xabx", xlWhole, , False, , False, False
On Error Resume Next
Set rng = .SpecialCells(xlFormulas, xlErrors)
    If Not rng Is Nothing Then
        .Replace "=Xabc", "abc", xlWhole, , False, , False, False
        rng.EntireRow.Copy Range("A" & Rows.Count).End(xlUp).Offset(2)
        rng.EntireRow.Delete
    End If
End With

Hi,
does this cure your issue please ?

thanks
Rob

VBA Code:
Sub MoveRows()
Dim rng As Range
With Range("C:C")
.Replace "abc", "=Xabx", xlWhole, , False, , False, False
On Error Resume Next
Set rng = .SpecialCells(xlFormulas, xlErrors)
    If Not rng Is Nothing Then
        .Replace "=Xabc", "abc", xlWhole, , False, , False, False
        rng.EntireRow.Copy Range("A" & Rows.Count).End(xlUp).Offset(2)
        rng.EntireRow.Delete
    End If
End With
Hi @RobP
Thank you so much. Works like a charm! :)

If I may ask for another help, as I just trying to automate my Excel reports. Again I have code that, was searched and implemented.

Code is for cutting and pasting the entire rows to another sheet once the criteria are matched.
The issue here is Worksheet, where the row is to be pasted, that WorksheetSheet has to be already created. Code does not create/add a new sheet on its own.

I tried with add sheet command, but that only adds the sheet to the WB, and then the code does not function.


Sub Sort_service_Affecting()
Dim SrchTerm As String, EndRw As Long, Rw As Long

EndRw = Cells(Rows.Count, "A").End(xlUp).Row
SrchTerm = "xyz"
For Rw = 2 To EndRw
If InStr(Cells(Rw, "A").Value, SrchTerm) Then
With Cells(Rw, "A").Resize(, 18)
.Copy Sheets("Sorted").Cells(Rows.Count, "A").End(xlUp)(2)
.Delete Shift:=xlUp

End With
Rw = Rw - 1
End If
Next Rw
End Sub
 
Upvote 0
Hi, I think what you are experiencing is that when you "create" (or add) your new worksheet to your workbook, that sheet becomes the "Active" worksheet. So the rest of your code is trying to operate then on this new blank worksheet.

Try adding
VBA Code:
Worksheets("your worksheet name here").Activate
after you have created the sheet, but before you execute the rest of your code. This should ensure your code is operating on your correct data, and not on the "Sorted" sheet you have just created.
cheers
Rob
 
Upvote 0
Hi, I think what you are experiencing is that when you "create" (or add) your new worksheet to your workbook, that sheet becomes the "Active" worksheet. So the rest of your code is trying to operate then on this new blank worksheet.

Try adding
VBA Code:
Worksheets("your worksheet name here").Activate
after you have created the sheet, but before you execute the rest of your code. This should ensure your code is operating on your correct data, and not on the "Sorted" sheet you have just created.
cheers
Rob
Hi Rob,
Thanks again! It works. But, Now I have run into another issue.

I have multiple tabs, this code needs to run. So, for Sheet1, this works fine. But, When I got to sheet2 .. It creates another Blank TAB.

So, Is it possible not to hardcode the sheet name? and to let the code know, Sheet is already there, just cut and paste the rows there.

TIA.
 
Upvote 0
Hi,

Do you mean you want to run this routine on several sheet Tabs ? In this case, the statement above is what you need - you just have to hardcode your "Worksheet or Tabname" into it and ensure its activated before you run it on that particular sheet.

If I've not understood well, then perhaps this function can be useful for you - to first detect if a sheet exists or not before you run something on it ?
You can call it by simply asking

If SheetExists("your sheet name here") Then
Do your stuff
Endif


VBA Code:
Private Function SheetExists(Tabname) As Boolean
'   Returns TRUE if sheet exists in the active workbook
    Dim x As Object
    On Error Resume Next
    Set x = ActiveWorkbook.Sheets(Tabname)
    If Err = 0 Then SheetExists = True _
        Else SheetExists = False
End Function
 
Upvote 0
Hi,

Do you mean you want to run this routine on several sheet Tabs ? In this case, the statement above is what you need - you just have to hardcode your "Worksheet or Tabname" into it and ensure its activated before you run it on that particular sheet.

If I've not understood well, then perhaps this function can be useful for you - to first detect if a sheet exists or not before you run something on it ?
You can call it by simply asking

If SheetExists("your sheet name here") Then
Do your stuff
Endif


VBA Code:
Private Function SheetExists(Tabname) As Boolean
'   Returns TRUE if sheet exists in the active workbook
    Dim x As Object
    On Error Resume Next
    Set x = ActiveWorkbook.Sheets(Tabname)
    If Err = 0 Then SheetExists = True _
        Else SheetExists = False
End Function
Hi .. Sorry, didn't get your point here.

Once the new sheet is added, I need to run this code on multiple sheets in a wb. So, every time I try to run this code on sheet2, it stops as 'myNewSheet' is already created, and Active Sheet changes to Sheet1 .. as this is hardcoded. :(

Sub Sort_Not_Required()

'I have added new Sheet
Sheets.Add.Name = "myNewSheet"

' I don't want to hard code this "Sheet1" here. As in wb, I will run this code on Sheet1, Sheet2, and so on. So every time Sheet value changes.
Worksheets("Sheet1").Activate


Dim SrchTerm As String, EndRw As Long, Rw As Long
EndRw = Cells(Rows.Count, "A").End(xlUp).row
SrchTerm = "abc"
For Rw = 2 To EndRw
If InStr(Cells(Rw, "A").Value, SrchTerm) Then
With Cells(Rw, "A").Resize(, 18)
.Copy Sheets("myNewSHeet").Cells(Rows.Count, "A").End(xlUp)(2)
.Delete Shift:=xlUp
End With
Rw = Rw - 1
End If
Next Rw
End sub
 
Upvote 0
Hi, heres the update - see if it is okay for you. Note, I also added the function "Sheetexists" that I posted previously, as this is used to check if your "myNewSheet" exists or not. If it does not exist, then it will create a new one. the second time (sheet2 for example), it should not create one.
Let me know how you get on.

VBA Code:
Sub Sort_Not_Required()

Dim sheetname As String
sheetname = ActiveSheet.Name 'store the current sheetname before adding a sheet.

If Not SheetExists("myNewSheet") Then
    'I have added new Sheet if one does not exist already (uses the sheetexists function below)
    Sheets.Add.Name = "myNewSheet"
    ' hardcoded sheetname removed, and variable name used instead from above
    Worksheets(sheetname).Activate
End If

Dim SrchTerm As String, EndRw As Long, Rw As Long

EndRw = Cells(Rows.Count, "A").End(xlUp).Row
SrchTerm = "abc"
For Rw = 2 To EndRw
    If InStr(Cells(Rw, "A").Value, SrchTerm) Then
        With Cells(Rw, "A").Resize(, 18)
            .Copy Sheets("myNewSHeet").Cells(Rows.Count, "A").End(xlUp)(2)
            .Delete Shift:=xlUp
        End With
        Rw = Rw - 1
    End If
Next Rw

End Sub

Private Function SheetExists(Tabname) As Boolean
'   Returns TRUE if sheet exists in the active workbook
    Dim x As Object
    On Error Resume Next
    Set x = ActiveWorkbook.Sheets(Tabname)
    If Err = 0 Then SheetExists = True _
        Else SheetExists = False
End Function
 
Upvote 0
Hi, heres the update - see if it is okay for you. Note, I also added the function "Sheetexists" that I posted previously, as this is used to check if your "myNewSheet" exists or not. If it does not exist, then it will create a new one. the second time (sheet2 for example), it should not create one.
Let me know how you get on.

VBA Code:
Sub Sort_Not_Required()

Dim sheetname As String
sheetname = ActiveSheet.Name 'store the current sheetname before adding a sheet.

If Not SheetExists("myNewSheet") Then
    'I have added new Sheet if one does not exist already (uses the sheetexists function below)
    Sheets.Add.Name = "myNewSheet"
    ' hardcoded sheetname removed, and variable name used instead from above
    Worksheets(sheetname).Activate
End If

Dim SrchTerm As String, EndRw As Long, Rw As Long

EndRw = Cells(Rows.Count, "A").End(xlUp).Row
SrchTerm = "abc"
For Rw = 2 To EndRw
    If InStr(Cells(Rw, "A").Value, SrchTerm) Then
        With Cells(Rw, "A").Resize(, 18)
            .Copy Sheets("myNewSHeet").Cells(Rows.Count, "A").End(xlUp)(2)
            .Delete Shift:=xlUp
        End With
        Rw = Rw - 1
    End If
Next Rw

End Sub

Private Function SheetExists(Tabname) As Boolean
'   Returns TRUE if sheet exists in the active workbook
    Dim x As Object
    On Error Resume Next
    Set x = ActiveWorkbook.Sheets(Tabname)
    If Err = 0 Then SheetExists = True _
        Else SheetExists = False
End Function

Hi Rob,

Sorry for the late reply. I tried this code but doesn't work. It creates the new Tab "myNewSheet" but, then the code stops functioning there.
Also, Please share how to incorporate this private function in the main SUB, as this returns an error.
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,048
Members
449,206
Latest member
Healthydogs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top