我正在尝试自动化具有 5 个不同信息源的报告。我正在尝试使用 ListObjects 将不同表的 UNION 合并为一个表,一切正常,除非我复制第一个 ListObject 的第一列。复制第一列大约需要 2 分钟,接下来的列需要不到 1 秒。
每次运行 VBA 脚本时,我都会删除目标表的所有行,以使用 0 行的 ListObject 启动 VBA 脚本。
我将尝试解释它是如何工作的:
Sub ProcesarPresupuesto()
'This is the first macro that process and copy the information of the first source
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.Calculation = xlCalculationManual
'<Here> I add several columns and process the information of this first source, I keep all the rows as values using the Function: AddColumnFormula (at the end of this example). I think this is not causing the problem.
'Then I fill all the Blanks Cells to avoid having empty cells in my final table.
Sheets("Origin").Select
Selection.CurrentRegion.Select
On Error Resume Next
Selection.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "Null"
On Error GoTo 0
'When I have the ListObject ready I start copying the columns to the destination
Sheets("Destination").Select
Range("A1").Select
While ActiveCell.Value <> ""
Call CopyColumn("Origin", ActiveCell.Value, "Destination")
ActiveCell.Offset(0, 1).Select
Wend
End Sub
我认为这应该非常快。如果我只删除 Destination ListObject 的值并将行保留为空,则第一列会立即复制,因此我认为问题与 Excel 如何计算要添加到 ListObject 的第一行有关。当表为空时,有没有更好的方法来复制列?我真的做错了什么吗?
这是函数 CopyColumn
Function CopyColumn(Origin, ColumnName, Destination)
Range(Origin & "[[" & ColumnName & "]]").Copy Destination:=Range(Destination & "[[" & ColumnName & "]]")
End Function
这是我用来处理列的函数
Function AddColumnFormula(DestinationSheet, TableName, ColumnName, Value)
Set NewColumn = Sheets(DestinationSheet).ListObjects(TableName).ListColumns.Add
NewColumn.Name = ColumnName
Set Rango = Range(TableName & "[[" & ColumnName & "]]")
Rango.Value = Value
Rango.Copy
Rango.PasteSpecial (xlPasteValues)
End Function
提前感谢您的时间和答案
最佳答案
我用你提供的文件做了一些测试。它很慢,但我一开始没有计时。我看到了一些修改可能会提高性能的代码的机会,计时器花了 1 分 16 秒。
我尝试了一些不同的成功方法,使用 Debug.Print
语句告诉我代码的哪一部分正在运行以及它们花费了多长时间。大多数处决每次约 2 分钟,最慢的是 3 分 13 秒。
在最后一次 3 分 13 秒的尝试中,我将重点缩小到:...CurrentRegion.SpecialCells(xlCellTypeBlanks)
这是值得怀疑的,因为 CurrentRegion
和 SpecialCells
方法都可能很昂贵。将它们结合起来似乎是灾难的秘诀。
我想我会尝试一个简单的迭代,只是为了比较性能,令我惊讶的是,我能够在 42,000 行和 32 列数据上执行一个简单的 For each
循环,并且这将在大约 14 秒内始终如一地执行一次总运行- 大约 30 秒的时间。
这是我用于循环的代码:
Dim cl As Range
'Debug.Print "For each ..." & Format(Now(), "hh:mm:ss")
For Each cl In wsP.ListObjects(1).DataBodyRange
If cl.Value = vbNullString Then cl.Value = "Null"
Next
'Debug.Print "End loop " & Format(Now(), "hh:mm:ss")
这是我最近的三个结果:
31 seconds:
Commencar a 21:09:25
For each ...21:09:38
End loop 21:09:52
CopiarColumnaListOBjectaVacia...21:09:52
Finito : 5/5/2014 9:09:56 PM
30 seconds:
Commencar a 21:10:23
For each ...21:10:36
End loop 21:10:49
CopiarColumnaListOBjectaVacia...21:10:49
Finito : 5/5/2014 9:10:53 PM
34 seconds:
Commencar a 21:18:42
For each ...21:18:55
End loop 21:19:09
CopiarColumna... 21:19:09
Finito : 5/5/2014 9:19:16 PM
我已将 XLSB 的修订版保存在 Google Docs 上,以便您可以完整查看。
https://drive.google.com/file/d/0B1v0s8ldwHRYZWhuTmRuaDJoMzQ/edit?usp=sharing
正如我所说,我确实对这个子程序和
RenombraColumna
进行了一些更改,但事后看来,虽然这些可能会提供一些效率,但我认为问题的根源在于 CurrentRegion.SpecialCells
。我希望你不介意我修改了这个问题的标题,使其更适合特定的问题。正如最初所说,这个问题不太可能帮助其他有相同症状的人。
关于excel - CurrentRegion.SpecialCells(xlCellTypeVisible) 太慢 - 提高性能的技巧?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23395492/