I have 27 different titles I am finding then deleting using a long list of:
Cells.Find(What:="C1S", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Selection.EntireColumn.Select
Selection.Delete
How can shorted the list?
Cells.Find(What:="C1S", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Selection.EntireColumn.Select
Selection.Delete
How can shorted the list?