附件是一个潜在的解决方案,作为一个可以运行的vbsvba
,如果可用的话
感谢 Sid Rout 提出的修改建议RecursiveFile(objWB)
警告:有可能同时打开的书太多(我在vbs
递归地狱期间达到 512)会导致内存问题 - 在这种情况下,应该依次更新每个主要分支,然后在继续下一个分支之前关闭这些工作簿。
它能做什么
- 打开由持有的工作簿
strFilePath
- 检查 1 中是否有任何链接的工作簿,如果有则打开它们(B、B1、B2 等)
- 然后代码在 (2) 的每个工作簿中查找任何链接,然后依次打开所有这些链接(C1 和 C2 用于 B 等)
- 每个打开的书名都存储在一个数组中,
Arr
- 当所有书都打开时,初始工作簿将已更新,递归代码结束,所有打开的书
strFilePath
都关闭而不保存
strFilePath
然后保存并关闭
- 代码整理
编辑:更新代码以修复 vbs 递归问题
Public objExcel, objWB2, lngCnt, Arr()
Dim strFilePath, vLinks
`credit to Sid Rout for updating `RecursiveFileRecursiveFile(objWB)`
Erase Arr
lngCnt = 0
Set objExcel = CreateObject("Excel.Application")
strFilePath = "C:\temp\main.xlsx"
With objExcel
.DisplayAlerts = False
.ScreenUpdating = False
.EnableEvents = False
End With
Set objWB = objExcel.Workbooks.Open(strFilePath, False)
Call RecursiveFile(objWB)
For Each vArr In Arr
objExcel.Workbooks(vArr).Close False
Next
objWB.Save
objWB.Close
Set objWB2 = Nothing
With objExcel
.DisplayAlerts = True
.ScreenUpdating = True
.EnableEvents = True
.Quit
End With
Set objExcel = Nothing
MsgBox "Complete"
Sub RecursiveFile(objWB)
If Not IsEmpty(objWB.LinkSources()) Then
For Each vL In objWB.LinkSources()
ReDim Preserve Arr(lngCnt)
'MsgBox "Processing File " & vL
Set objWB2 = objExcel.Workbooks.Open(vL, False)
Arr(lngCnt) = objWB2.Name
lngCnt = lngCnt + 1
RecursiveFile objWB2
Next
End If
End Sub
工作截图