|
楼主 |
发表于 2023-5-24 11:29
|
显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
主过程的代码好像GG了,重新发一下:
- Private Sub SOP()
- Dim iRow&, SorcePath$, iFileName$, iFilePath$
-
- With ThisWorkbook.Sheets("项目表")
-
- SorcePath = "C:\Users\曾建波\Desktop\流式项目\批处理文件\01.SOP P01" '待处理文件的地址
-
- ' For iRow = 2 To .UsedRange.Rows.Count
- For iRow = 2 To 3 '仅用于测试
-
- iFileName = "SOP P01 (" & iRow - 1 & ").docx"
- iFilePath = SorcePath & "" & iFileName
-
- Call iRePlace(iFilePath, "TSPS01", .Cells(iRow, 2).Value)
- Next iRow
-
- End With
- End Sub
复制代码 |
|