Need Help Deleting Rows on all sheets (Quick) (VBA/Macro)

joshmorris23xx

New Member
Joined
Jul 29, 2018
Messages
2
Hi all,

Looking for a macro to achieve the following.

In column AA of a sheet named "Welcome" no quotes, I have various text in its cells.
If the cell does not contain the word "facts" no quotes in it, I would like to have that row deleted from ALL sheets in the workbook, and not leave any white empty space.

For example, cell AA1 says "facts hi", since it contains "facts", Row 1 should remain on all sheets.
Cell AA2 says "bye", since it does not contain facts, Row 2 should be entirely deleted from all sheets in the workbook.


All help appreciated getting this done!
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
So, you only want to search "Welcome" sheet for the text...then remove the row from ALL sheets ?
Will the rows in other sheets have the same text ??
 
Upvote 0
Hi joshmorris23xx,

Welcome to MrExcel!!

Try this (though initially on a copy of your data as the results cannot be undone if they're not as expected):

Code:
Option Explicit
Sub Macro1()
    
    Dim lngLastRow As Long
    Dim lngMyRow As Long
    Dim wsMySheet As Worksheet
      
    Application.ScreenUpdating = False
    
    lngLastRow = Sheets("Welcome").Cells(Rows.Count, "AA").End(xlUp).Row
    
    For lngMyRow = lngLastRow To 1 Step -1 'When deleting rows it's best to work backwards through the rows
        If IsError(Evaluate("SEARCH(""facts"",Welcome!AA" & lngMyRow & ")")) Then
            'The following three lines are sourced from here: _
            https://www.extendoffice.com/documents/excel/3641-excel-delete-rows-across-multiple-sheets.html
            ThisWorkbook.Worksheets.Select
            Rows(lngMyRow).Select
            Selection.Delete
        End If
    Next lngMyRow
    
    Sheets("Welcome").Select
    Range("AA1").Select
    
    Application.ScreenUpdating = True
    
    MsgBox "Process complete.", vbInformation
 
End Sub

Regards,

Robert
 
Last edited:
Upvote 0
Hi Rob
I'll toss in mine as well

Code:
Sub MM1()
Dim r As Long, lr As Long, ws As Worksheet
Application.ScreenUpdating = False
Set wel = Sheets("Welcome")
lr = wel.Cells(Rows.Count, "AA").End(xlUp).Row
For r = lr To 2 Step -1
    If InStr(Range("AA" & r), "facts") = 0 Then
        For Each ws In Worksheets
            ws.Activate
            Rows(r).Delete
        Next ws
    wel.Activate
    End If
Next r
Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0
Hey Michael,

It's been a while. Hope all is good with you and yours.

Balmy windy winter's here in Sydney. Is the same with you?
 
Upvote 0
Thanks! this worked great!

Just one thing that I forgot to mention: Can you make it exclude Row 1? It contains some headers that are important.


Hi joshmorris23xx,

Welcome to MrExcel!!

Try this (though initially on a copy of your data as the results cannot be undone if they're not as expected):

Code:
Option Explicit
Sub Macro1()
    
    Dim lngLastRow As Long
    Dim lngMyRow As Long
    Dim wsMySheet As Worksheet
      
    Application.ScreenUpdating = False
    
    lngLastRow = Sheets("Welcome").Cells(Rows.Count, "AA").End(xlUp).Row
    
    For lngMyRow = lngLastRow To 1 Step -1 'When deleting rows it's best to work backwards through the rows
        If IsError(Evaluate("SEARCH(""facts"",Welcome!AA" & lngMyRow & ")")) Then
            'The following three lines are sourced from here: _
            https://www.extendoffice.com/documents/excel/3641-excel-delete-rows-across-multiple-sheets.html
            ThisWorkbook.Worksheets.Select
            Rows(lngMyRow).Select
            Selection.Delete
        End If
    Next lngMyRow
    
    Sheets("Welcome").Select
    Range("AA1").Select
    
    Application.ScreenUpdating = True
    
    MsgBox "Process complete.", vbInformation
 
End Sub

Regards,

Robert
 
Upvote 0
mine any good....doesn't delete row 1
 
Upvote 0
Hey Robert
Haven't been on the forum much of late....kinda retired from Excel AND work ....play plenty of golf though!
Cold out west and really dry....but it seems to be the norm anywhere east of Alice these days !!!
 
Upvote 0
Can you make it exclude Row 1?

I included Row 1 as your original post said to. To set what row the code will check up to and including, change the bold 1 in the following line of code (presumably to 2):

Code:
For lngMyRow = lngLastRow To [B]1[/B] Step -1 'When deleting rows it's best to work backwards through the rows

HTH

Robert
 
Last edited:
Upvote 0
Hi Michael,

Same here. I started a new job recently so haven't been on the forum much either. Yes, it's certainly been been dry. I feel for the farmers.

Take care,

Robert
 
Upvote 0

Forum statistics

Threads
1,215,457
Messages
6,124,941
Members
449,197
Latest member
k_bs

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