Results 1 to 10 of 10

Delete rows with specific values

Threaded View

  1. #1
    Registered User
    Join Date
    10-17-2013
    Location
    Ardooie
    MS-Off Ver
    Excel 2007
    Posts
    67

    Delete rows with specific values

    Any trics to make code below faster/easier/shorter?
    I'm also out of OR statements and need to add more, I don't know how.
    Thanks in advice for any help with this one.

    
    Dim Firstrow2 As Long
    Dim Lastrow2 As Long
    Dim Lrow2 As Long
    Dim CalcMode2 As Long
    Dim ViewMode2 As Long
    
        With Application
            CalcMode2 = .Calculation
            .Calculation = xlCalculationManual
            .ScreenUpdating = False
        End With
    
        With ActiveSheet
            .Select
            Firstrow2 = .UsedRange.Cells(1).Row
            Lastrow2 = .UsedRange.Rows(.UsedRange.Rows.Count).Row
            
            For Lrow2 = Lastrow To Firstrow Step -1
                With .Cells(Lrow2, "F")
    
                    If Not IsError(.Value) Then
                        
                        'Voeg NIS9 hier toe (onterecht dubbel)
                        If .Value = ("BE37015A02-120207000084") _
                        Or .Value = ("BE33011A001120576000014") _
                        Or .Value = ("BE44011A01-134172000034") _
                        Or .Value = ("BE37017A091118503000004") _
                        Or .Value = ("BE45035A632132908000003") _
                        Or .Value = ("BE34003A072115437000029") _
                        Or .Value = ("BE43005A374135796000015") _
                        Or .Value = ("BE37010A091156389000005B") _
                        Or .Value = ("BE37017A0WN118524000003") _
                        Or .Value = ("BE34023A294117483000005") _
                        Or .Value = ("BE34009A0PA117866000005") _
                        Or .Value = ("BE31005A671105649000009009") _
                        Or .Value = ("BE37017C01-118605000002") _
                        Or .Value = ("BE34022D0MN114629000007") _
                        Or .Value = ("BE34022C001116162000130") _
                        Or .Value = ("BE34022A54-137870000034") _
                        Or .Value = ("BE31005F210110176000029") _
                        Or .Value = ("BE34040C081117991000112") _
                        Or .Value = ("BE45035A772132666000004") _
                        Or .Value = ("BE31005C0MA110872000002") _
                        Or .Value = ("BE31005Z999142428000003") _
                        Or .Value = ("BE45017A572133796000015A") _
                        Or .Value = ("BE54010E181103450000228") _
                        Or .Value = ("BE31005A211105684000010") _
                        Then .EntireRow.Delete
                    
                    End If
    
                End With
    
            Next Lrow2
    
        End With
    
        With Application
            .ScreenUpdating = True
            .Calculation = CalcMode
        End With
    Last edited by louvaek; 06-13-2019 at 07:42 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Delete Rows except rows with specific values across multiple uniquely named Worksheets
    By moosetales in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 01-23-2016, 03:04 PM
  2. Delete rows having duplicate values in a specific column
    By kre30a in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-24-2015, 02:37 PM
  3. [SOLVED] Delete rows which contain specific values
    By Blake 7 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-22-2015, 08:58 AM
  4. delete specific rows based on values in that row
    By bstinson in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-05-2013, 03:46 PM
  5. [SOLVED] Looking for VBA code to delete rows if values in 3 specific columns are the same
    By Priceman in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-02-2012, 10:32 AM
  6. Excel 2007 : How to delete specific values from rows?
    By leonlwf in forum Excel General
    Replies: 1
    Last Post: 06-01-2012, 12:03 AM
  7. Delete rows with specific column values
    By koklok in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-16-2008, 01:51 PM

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