+ Reply to Thread
Results 1 to 7 of 7

Find and delete

  1. #1
    Registered User
    Join Date
    06-24-2013
    Location
    Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    40

    Find and delete

    Hi all,

    I need help to delete 12 (P:AB) columns on my data.

    D10 = Key in range

    P4:AB500 = data table
    P=company name

    First i need vba to help me find the D10 value first.

    Second to delete entire row (P:AB) which company name match with D10.

    Thank you.

  2. #2
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Find and delete

    Where will be the company name?


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  3. #3
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Find and delete

    Attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are demonstrated, mock them up manually if needed. Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  4. #4
    Registered User
    Join Date
    06-24-2013
    Location
    Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    40

    Re: Find and delete

    Sorry. Didn't mention it. Every time i will key in the company name on D10.

    D10 = to key in company name

    P4:AB500 = data table
    P=company name

  5. #5
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Find and delete

    Try this...

    Please Login or Register  to view this content.

  6. #6
    Registered User
    Join Date
    06-24-2013
    Location
    Malaysia
    MS-Off Ver
    Excel 2010
    Posts
    40

    Re: Find and delete

    yes! this is what exactly i want! Thank you!

  7. #7
    Forum Expert Vikas_Gautam's Avatar
    Join Date
    06-04-2013
    Location
    Ludhiana,Punjab, India
    MS-Off Ver
    Excel 2013
    Posts
    1,850

    Re: Find and delete

    Try this by adding a button besides D10 Range and linking a Macro holding following code.
    PHP Code: 
    Sub DelRow()
     
    Dim SrchIn as RangeFnd as RangeDelRng as Range
     Set SrchIn 
    =  Columns("P")
     
     
    With SrchIn
      set Fnd 
    = .Find([D10]) 
      
    fAdd Fnd.Address
      
      
    If fnd is Nothing then Msgbox "No Match is Found"vbinformation End
      
      
    Do
       
    set DelRng =  Union(DelRngFnd)
       
    Set Fnd = .findNext(Fnd)  
      
    loop while not Fnd is nothing and fAdd <> Fnd.Address 
     
     End with
     DelRng
    .Entirerow.delete xlup
     Msgbox 
    "Finished"vbinformation
    End Sub 
    if you want to make it automatic then you can use Worksheet Change Event
    Here is the code:-

    PHP Code: 
    Private Sub Worksheet_Change(ByVal Target as Range)
     if 
    Target.address <> "$D$10" then End
     Dim SrchIn 
    as RangeFnd as RangeDelRng as Range
     Set SrchIn 
    =  Columns("P")
     
     
    With SrchIn
      set Fnd 
    = .Find([D10]) 
      
    fAdd Fnd.Address
      
      
    If fnd is Nothing then Msgbox "No Match is Found"vbinformation End
      
      
    Do
       
    set DelRng =  Union(DelRngFnd)
       
    Set Fnd = .findNext(Fnd)  
      
    loop while not Fnd is nothing and fAdd <> Fnd.Address 
     
     End with
     DelRng
    .Entirerow.delete xlup
     Msgbox 
    "Finished"vbinformation
    End Sub 
    Paste the above code in the Sheet module.
    Regards,
    Vikas Gautam
    Excel-buzz.blogspot.com

    Excel is not a matter of Experience, its a matter of Application.

    Say Thanks, Click * Add Reputation

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Find and delete *
    By Laura343 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 02-26-2013, 10:16 AM
  2. Replies: 4
    Last Post: 09-18-2012, 10:54 AM
  3. How to find duplicate entries, find which has the lowest value, and delete the rest?
    By John2810 in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 11-05-2011, 06:39 AM
  4. Find and Delete Row
    By ashleykelley in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-28-2007, 04:07 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