MarkCBB
Active Member
- Joined
- Apr 12, 2010
- Messages
- 497
HI there VBA Gurus,
I am looking for some code that is triggered after a web query has run. to run the following code:
I am looking for some code that is triggered after a web query has run. to run the following code:
Code:
Sub A()
Rows("1:130").Delete Shift:=xlUp
With Cells
.Replace What:="?»?", Replacement:="", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
.ClearFormats
End With
End Sub