Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Now I want to select every cell in a column with the word "Critical" in it
and have the contents deleted. So: Select every cell in column H with the word "Critical" in it then have it deleted. What would that look like in a formula for a macro??? THANKS!!!! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Rows(1).Insert
Columns("H:H").AutoFilter field:=1, Criteria1:="Critical" Columns("H:H").SpecialCells(xlCellTypeVisible).Ent ireRow.Delete -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct) "bodhisatvaofboogie" wrote in message ... Now I want to select every cell in a column with the word "Critical" in it and have the contents deleted. So: Select every cell in column H with the word "Critical" in it then have it deleted. What would that look like in a formula for a macro??? THANKS!!!! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub DeleteCriticalRows()
Dim rng as Range set rng = columns("H").find("critical", Range("H1")) if not rng is nothing then do rng.Entirerow.Delete set rng = columns("H").find("critical",Range("H1")) loop while not rng is nothing End if End sub -- Regards, Tom Ogilvy "bodhisatvaofboogie" wrote: Now I want to select every cell in a column with the word "Critical" in it and have the contents deleted. So: Select every cell in column H with the word "Critical" in it then have it deleted. What would that look like in a formula for a macro??? THANKS!!!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Selecting a specific worksheet | New Users to Excel | |||
Selecting specific numbers from a cell containing multiple numbers | Excel Worksheet Functions | |||
Selecting specific cells | Excel Discussion (Misc queries) | |||
Selecting many specific columns for a chart | Charts and Charting in Excel | |||
Selecting a specific cell (that is data validated) | Excel Programming |