-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold.bas
More file actions
19 lines (15 loc) · 800 Bytes
/
old.bas
File metadata and controls
19 lines (15 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Attribute VB_Name = "old"
Sub 替换合同台账包件名称_old()
Application.ScreenUpdating = False '禁刷新
Worksheets("上报告").Activate
Columns("V:V").Select
Selection.Replace What:="*(", Replacement:="", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False, FormulaVersion:=xlReplaceFormula2
Selection.Replace What:=")", Replacement:="", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False, FormulaVersion:=xlReplaceFormula2
Selection.Replace What:=" ", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False, FormulaVersion:=xlReplaceFormula2
End Sub