【发布时间】:2015-04-08 13:28:20
【问题描述】:
我现在使用此代码遇到的主要问题是处理我打开的 xlsm 文件的错误。 我对这些文件的 VB 代码没有编辑权限。如果 vb 出错,有没有办法跳过文件?
我有一个包含大约 99 个 xlsm 文件的文件夹,我希望循环遍历每个文件并进行复制,假设每个工作簿中的第 14 行并将其粘贴到单独的工作簿中作为摘要。 这是我到目前为止所拥有的;唯一的问题是它复制了一个空白行。当我逐步浏览 VB 时,我可以看到它没有在它打开的 xlsm 文件上运行宏。有人知道一些可以在这里帮助我的代码吗?
Sub MergeAllWorkbooks()
Dim SummarySheet As Worksheet
Dim FolderPath As String
Dim NRow As Long
Dim FileName As String
Dim WorkBk As Workbook
Dim SourceRange As Range
Dim DestRange As Range
Application.Calculation = xlCalculationAutomatic
' Create a new workbook and set a variable to the first sheet.
Set SummarySheet = Workbooks.Add(xlWBATWorksheet).Worksheets(1)
' Modify this folder path to point to the files you want to use.
FolderPath = "C:\Users\dredden2\Documents\SHAREPOINT ARCHIVING\PAGESETUP\TEST\"
' NRow keeps track of where to insert new rows in the destination workbook.
NRow = 2
' Call Dir the first time, pointing it to all Excel files in the folder path.
FileName = DIR(FolderPath & "*.xlsm")
' Loop until Dir returns an empty string.
Do While FileName <> ""
' Open a workbook in the folder
Set WorkBk = Workbooks.Open(FolderPath & FileName)
WorkBk.Application.EnableEvents = True
WorkBk.Application.DisplayAlerts = False
WorkBk.Application.Run _
"'" & FileName & "'!auto_open"
' Set the cell in column A to be the file name.
SummarySheet.Range("A" & NRow).Value = FileName
' Set the source range to be B14 through BF14.
' Modify this range for your workbooks.
' It can span multiple rows.
Set SourceRange = WorkBk.Sheets("Retrospective Results").Range("B14:BF14")
' Set the destination range to start at column B and
' be the same size as the source range.
Set DestRange = SummarySheet.Range("B" & NRow)
Set DestRange = DestRange.Resize(SourceRange.Rows.Count, _
SourceRange.Columns.Count)
' Copy over the values from the source to the destination.
DestRange.Value = SourceRange.Value
' Increase NRow so that we know where to copy data next.
NRow = NRow + DestRange.Rows.Count
' Close the source workbook without saving changes.
WorkBk.Close savechanges:=False
' Use Dir to get the next file name.
FileName = DIR()
Loop
' Call AutoFit on the destination sheet so that all
' data is readable.
SummarySheet.Columns.AutoFit
WorkBk.Application.DisplayAlerts = False
SummarySheet.SaveAs FileName:= _
FolderPath & "\SummarySheet\SummarySheet.xlsx" _
, FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
End Sub
【问题讨论】:
-
哪条线路给您带来了麻烦?
-
实际上,我刚刚意识到这段代码有效;但似乎效率不高。我添加了行 WorkBk.Application.Run _ "'" & FileName & "'!auto_open" 调用每个 xlsm 文件上的宏。我只是想弄清楚是否有更有效的方法。