E
Eldraad
due to the formatting of a report that I import as a text document int
excel I get a problem with page breaks and other information that i
not needed.
Here is an example of one of the routines I am using to get rid of th
unwanted rows (well, it is duplicated every page break so there ar
many of them)...
(Someone else posted this macro and I used it for this...)
Sub LABR18000()
Dim C As Range
On Error GoTo 1
2: Set C = [a2:a1900].Find("LABR81000", MatchCase:=False
lookat:=xlWhole, LookIn:=xlValues)
C.EntireRow.Delete
GoTo 2
1: End Sub
In the above case I was removing all rows that begin with "LABR81000".
Most of the rows that get deleted start in the A column except one.
Now, there are about 5 different lines that I need to remove and eac
one appears many times. What would be the best way to incorporate al
5 macros into one macro?
I would be thankful for any help on this...
Thanks for your time in reading this question...
Eldraa
excel I get a problem with page breaks and other information that i
not needed.
Here is an example of one of the routines I am using to get rid of th
unwanted rows (well, it is duplicated every page break so there ar
many of them)...
(Someone else posted this macro and I used it for this...)
Sub LABR18000()
Dim C As Range
On Error GoTo 1
2: Set C = [a2:a1900].Find("LABR81000", MatchCase:=False
lookat:=xlWhole, LookIn:=xlValues)
C.EntireRow.Delete
GoTo 2
1: End Sub
In the above case I was removing all rows that begin with "LABR81000".
Most of the rows that get deleted start in the A column except one.
Now, there are about 5 different lines that I need to remove and eac
one appears many times. What would be the best way to incorporate al
5 macros into one macro?
I would be thankful for any help on this...
Thanks for your time in reading this question...
Eldraa