第一列**(金融产品ISIN编号)存在**重复值,但其他列(产品名称、修改久期等)特征不同,其中应该是相同的特征。
我想找到已经存在于我的第一列中的ISIN编号(至少两次),然后从其他列(发现重复值的同一行)中提取特定元素,如发行人名称,修改的期限等,并将它们粘贴到其他ISIN元素中,以报告相同的元素(其他列中的数据),以防ISIN编号相同。
我还想比较这些重复产品的修改后的持续时间,并取较大的一个(出于保守的原因,因为这些数据用于进一步的计算)。
Sub dup_cp()
Dim i As Integer
Dim j As Integer
Dim k As Integer
Sheets("Investment Assets").Activate
j = Application.CountA(Range("A:A"))
'counts the number of filled in rows
For i = 5 To j
'it starts from line 5 on purpose, the ISIN numbers start from that line
For k = i + 1 To j
If Sheets("Investment Assets").Range(Cells(k, 55), Cells(k, 55)).Value = "Duplicate Value" Then GoTo skip_dup
'it skips the line that has already been detected as duplicated
If Sheets("Investment Assets").Range(Cells(k, 1), Cells(k, 1)).Value = Sheets("Investment Assets").Range(Cells(i, 1), Cells(i, 1)).Value Then
'it finds the duplicate value (ISIN number) in the first column
If Sheets("Investment Assets").Range(Cells(k, 29), Cells(k, 29)).Value >= Sheets("Investment Assets").Range(Cells(i, 29), Cells(i, 29)).Value Then
'it compares the 29th column values (the modified duration of the components) and keeps the bigger value for prudency reasons
Sheets("Investment Assets").Range(Cells(k, 15), Cells(k, 32)).Copy
Sheets("Investment Assets").Range(Cells(i, 15), Cells(i, 32)).PasteSpecial Paste:=xlPasteValues
Else
Sheets("Investment Assets").Range(Cells(i, 15), Cells(i, 32)).Copy
Sheets("Investment Assets").Range(Cells(k, 15), Cells(k, 32)).PasteSpecial Paste:=xlPasteValues
End If
Sheets("Investment Assets").Range(Cells(k, 55), Cells(k, 55)).Value = "Duplicate Value"
'it shows in the 55th column if the ISIN number is duplicated or not
Sheets("Investment Assets").Range(Cells(i, 55), Cells(i, 55)).Value = "Duplicate Value"
Else
Sheets("Investment Assets").Range(Cells(k, 55), Cells(k, 55)).Value = "-"
End If
skip_dup:
Next
Next
End Sub
这段代码可以工作,但是很乱。可以让它更简单更快吗?
2条答案
按热度按时间vm0i2vca1#
更改了一些东西。如前所述,
Copy
和Activate
是性能上最大的拖累。我引入了With
语句,而不是Activate
,并将Copy
、Paste
更改为更快的....Value = ....Value
老Nick的提议对于性能来说也是非常好的,但是我会小心地实现它,就像这样:
因为如果你一开始就禁用了这些东西,然后突然代码中出现了问题,你可能就无法重新启用这些东西了。
w1jd8yoj2#
在不改变你所做的任何事情的情况下(毕竟你说它工作正常),你可以在调用你的子程序之前尝试禁用Excel的一些自动功能:
然后在你从潜艇回来的时候重新启用它们:
希望通过这样做您可以看到执行速度的提高