Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This macro deletes all rows that on column "F" have the word "Take Out"
It works fine but, it takes to long, and now I need the macro to delete this and also go to column "G" and delete all that are not "allowance". I need this fast, the current macro take about 3 to 4 minutes 'Borra los que no sean Customer Validos Columns("F:F").Select With Selection Set c = .Find("Take Out", LookIn:=xlValues) If Not c Is Nothing Then firstAddress = c.Address Do Set d = c.Offset(-1, 0) c.EntireRow.Delete Set c = .FindNext(d) Loop While Not c Is Nothing End If End With |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Deleting the text without deleting the formula | Excel Worksheet Functions | |||
Deleting cell data without deleting formula | Excel Discussion (Misc queries) | |||
deleting values in a worksheet without deleting the formulas | Excel Worksheet Functions | |||
how prevent formula in cell from deleting when deleting value???? | New Users to Excel | |||
Deleting Hyphens or Dashes from multiple cells without deleting the remaining content | Excel Programming |