Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In column A there are Two labels RW and RS....I need to remove the contain from rows B-J labeled RS
A B C D E F G H I J K 1 RW 11 22 88 5 6 p u r l 45 2 RS 2 57 7 6 4 r l m w 50 3 RW 45 25 4 2 8 9 t w a 90 ETC...400 rows thanks Bill Submitted via EggHeadCafe - Software Developer Portal of Choice Silverlight 2 Beta 2: Doing Data Part II http://www.eggheadcafe.com/tutorials...eta-2-doi.aspx |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sort or datafilterautofilterfilter for RSdelete
-- Don Guillett Microsoft MVP Excel SalesAid Software "bill boch" wrote in message ... In column A there are Two labels RW and RS....I need to remove the contain from rows B-J labeled RS A B C D E F G H I J K 1 RW 11 22 88 5 6 p u r l 45 2 RS 2 57 7 6 4 r l m w 50 3 RW 45 25 4 2 8 9 t w a 90 ETC...400 rows thanks Bill Submitted via EggHeadCafe - Software Developer Portal of Choice Silverlight 2 Beta 2: Doing Data Part II http://www.eggheadcafe.com/tutorials...eta-2-doi.aspx |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
try Sub delete_Me() Dim copyrange As Range Lastrow = Cells(Cells.Rows.Count, "B").End(xlUp).Row Set MyRange = Range("B1:J" & Lastrow) For Each c In MyRange If InStr(c, "RS") Then If copyrange Is Nothing Then Set copyrange = c.EntireRow Else Set copyrange = Union(copyrange, c.EntireRow) End If End If Next If Not copyrange Is Nothing Then copyrange.Delete End If End Sub "bill boch" wrote: In column A there are Two labels RW and RS....I need to remove the contain from rows B-J labeled RS A B C D E F G H I J K 1 RW 11 22 88 5 6 p u r l 45 2 RS 2 57 7 6 4 r l m w 50 3 RW 45 25 4 2 8 9 t w a 90 ETC...400 rows thanks Bill Submitted via EggHeadCafe - Software Developer Portal of Choice Silverlight 2 Beta 2: Doing Data Part II http://www.eggheadcafe.com/tutorials...eta-2-doi.aspx . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Move thur range of cells with enter key in excel | Excel Discussion (Misc queries) | |||
Remove last n rows | Excel Worksheet Functions | |||
calculate how many Mon, Tue, Wed, Thur, Fri, Sat & Sun in month | Excel Discussion (Misc queries) | |||
remove rows in one sheet from similar rows in another | Excel Worksheet Functions | |||
Adding Days (i.e. Mon, Tue, Wed, Thur...) to sheet | Excel Discussion (Misc queries) |