Results 1 to 6 of 6

Delete Rows containing Certain Prefixes

Threaded View

  1. #1
    Forum Contributor
    Join Date
    07-12-2018
    Location
    South Africa
    MS-Off Ver
    Office 2024
    Posts
    2,873

    Delete Rows containing Certain Prefixes

    I have tried to write code to delete items where the number starts with an X in Col A from row 2 onwards , but cannot get it to work

    It would be appreciated if someone could kindly amend my code

     Sub Delete_Unwanted_Prefixes()
    Sheets("TB").Select
    Finalrow = Cells("A65536").End(xlUp).Row
    For i = Finalrow To 2 Step -1
    If Cells(i, 1).Value Like "*X*,"*Z*","*U*" Then
    
    Cells(i, 1).EntireRow.Delete
    
    End If
    Next i
    End Sub
    Last edited by Howardc1001; 10-04-2019 at 12:25 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Rows delete formula as per range of cell values with counter to delete # rows
    By qureshi2016 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-03-2017, 09:35 AM
  2. Copy prefixed names to there own sheets
    By boltonlad2k in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-13-2015, 02:49 PM
  3. [SOLVED] List all prefixed numbers from a range
    By searstream in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-28-2012, 01:01 PM
  4. How to Sort Numerically prefixed alpha numeric rows by Number
    By Shullay in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 04-25-2012, 08:36 PM
  5. How to have txt prefixed into a cell?
    By jediknight in forum Excel General
    Replies: 4
    Last Post: 08-14-2010, 02:14 PM
  6. how do I add values prefixed with a letter
    By Davycc in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 08-08-2008, 02:28 PM
  7. Adding Rows after Prefixed no of rows
    By harish kumar in forum Excel General
    Replies: 1
    Last Post: 02-26-2005, 08:32 AM

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