Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi I need to delete all lines except those containing the Text NMI, FromDate,
To Date Can someone tell me where I'm going wrong with this Macro when I run it, it deletes all lines? Public Sub DeleteNonSpecific Rows() Dim rCell As Range Dim rDelete As Range For Each rCell In Range("A1:A" & _ Range("A" & Rows.Count).End(xlUp).Row) With rCell If Not (Text) = " FromDate" Or _ (Text) = " ToDate" Or _ UCase(.Text) = " NMI ") Then If rDelete Is Nothing Then Set rDelete = .Cells Else Set rDelete = Union(rDelete, .Cells) End If End If End With Next rCell If Not rDelete Is Nothing Then rDelete.EntireRow.Delete End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
DELETING LINES THAT ARE THE SAME IN A TABLE | Excel Discussion (Misc queries) | |||
Deleting lines that use them for formulas | Excel Discussion (Misc queries) | |||
Deleting unused lines between used lines? | Setting up and Configuration of Excel | |||
Deleting Lines in Excel | Excel Discussion (Misc queries) | |||
Deleting multiple lines | Excel Discussion (Misc queries) |