Hello.

I have been trying to write a macro that finds a certain text in a
spreadsheet, and then deletes that line and the line after it.  I used
record a macro to help me do this and it works. The problem I am
having is trying to get it so the macro loops through the entire
spreadsheet.  Here is the code as displayed in visual basic.

Sub FindandDeleteContinued()
'
' Find 'continued' and delete that row and following row.
'

'
    Cells.Find(What:="continued", After:=ActiveCell,
LookIn:=xlFormulas, _
        LookAt:=xlPart, SearchOrder:=xlByColumns,
SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Activate
    ActiveCell.EntireRow.Select
    Selection.Delete Shift:=xlUp
    ActiveCell.EntireRow.Select
    Selection.Delete Shift:=xlUp

End Sub

Any help on getting this to loop would be great.
P.S. I am using excel 2007.

--~--~---------~--~----~------------~-------~--~----~
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe
-~----------~----~----~----~------~----~------~--~---

Reply via email to