Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a spreadsheet with 8,000 rows that I have performed some work on. In
column W "Research" and numbers appear. I have written in my macro so that the data is sorted so that all the Research appears in the first rows. How do I delete rows, as quickly as possible, that have Research in Column W? I wrote the following Loop but it doesn't work and I am not sure that a Loop is the quickest way to accomplish this. Column V is blank. I was trying to establish a block of rows to be deleted and delete all at once. Sub Macro1() Range("V7").Select ActiveCell.Formula = "1" Range("W7").Select X = ActiveCell.Row Do While Cells(X, 23).Text = "Research" X = X + 1 Loop ActiveCell.Select ActiveCell.Offset(-1, -1).Select Selection.End(xlUp).Select Selection.EntireRow.Delete Shift:=xlUp End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format a cell such that "#NAME?" reads/appears "N/A"? | Excel Discussion (Misc queries) | |||
Cell reads "Value" without an entry | Excel Worksheet Functions | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
When I input "25:03" as a time, it reads "1:03" | Excel Discussion (Misc queries) | |||
Is there a formula thet reads (If A2=A1,"",INSERT PAGE BREAK) ? | Excel Discussion (Misc queries) |