+ Reply to Thread
Results 1 to 4 of 4

Delete Rows based on what it finds?

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-07-2010
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    358

    Delete Rows based on what it finds?

    Hey Guys,

    I think this is fairly simple to create but I'm having problems...

    I need a macro to go through all of column "A" and search for the exact word "Logic" as the whole cell

    If it finds it, then it needs to delete itself and the 3 rows above
    However it must start searching from 19 and lower, so it must ignoring the one found in row 18

    Thanks in advance
    - Hyflex
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Delete Rows based on what it finds?

    Sub test()
      
      With Sheets("Sheet1")
        Application.ScreenUpdating = 0
                 LR = .Cells.Find("*", , , , xlByRows, xlPrevious).Row
                 For i = LR To 19 Step -1
                        If Trim(.Cells(i, 1)) = "Logic" Then
                            .Cells(i, 1).EntireRow.Delete
                            .Cells(i, 1).Offset(-3).EntireRow.Delete
                        End If
                Next i
        Application.ScreenUpdating = 1
     End With
    End Sub

  3. #3
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Delete Rows based on what it finds?

    OR

    Sub test()
      
      With Sheets("Sheet1")
        Application.ScreenUpdating = 0
                 LR = .Cells.Find("*", , , , xlByRows, xlPrevious).Row
                 For i = LR To 19 Step -1
                        If Trim(.Cells(i, 1)) = "Logic" Then
                            Union(.Cells(i, 1), .Cells(i, 1).Offset(-3)).EntireRow.Delete
                        End If
                Next i
        Application.ScreenUpdating = 1
     End With
    End Sub

  4. #4
    Registered User
    Join Date
    02-08-2013
    Location
    Louisiana, USA
    MS-Off Ver
    Excel 2010
    Posts
    35

    Re: Delete Rows based on what it finds?

    I just added two lines to AB33 code.

    Sub test()
      
      With Sheets("Sheet1")
        Application.ScreenUpdating = 0
                 LR = .Cells.Find("*", , , , xlByRows, xlPrevious).Row
                 For i = LR To 19 Step -1
                        If Trim(.Cells(i, 1)) = "Logic" Then
                            .Cells(i, 1).EntireRow.Delete
                            .Cells(i, 1).Offset(-1).EntireRow.Delete
                            .Cells(i, 1).Offset(-2).EntireRow.Delete
                            .Cells(i, 1).Offset(-3).EntireRow.Delete
                        End If
                Next i
        Application.ScreenUpdating = 1
     End With
    End Sub

+ 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