如果多个单元格注解重复,我正在尝试将它们合并在一起。
目前我的宏导入电缆长度数据,然后在计算重复行的数量后删除重复的数据。100Ft的数量7将只是一行700Ft的电缆。我遇到的问题是每行都有一个注解,说明该电缆是从哪里导入的。合并后,它只保留其中一个注解。我如何合并注解?
'Import Data
If ws.Range("C" & c) = Chr(42) Then
ws.Range("H" & c & ":L" & c).Copy Destination:=wsC.Range("A" & lr) '* New Circuit
wsC.Range("B" & lr).AddComment wb.Name
lr = lr + 1
End If
'Remove Duplicates
For x = lastrow To 7 Step -1
For Y = 7 To lastrow
If (.Cells(x, 1) = .Cells(Y, 1) And .Cells(x, 3) = .Cells(Y, 3) And _
.Cells(x, 4) = .Cells(Y, 4) And .Cells(x, 5) = .Cells(Y, 5)) And x > Y Then
.Cells(Y, 2) = .Cells(x, 2) + .Cells(Y, 2)
Rows(x).EntireRow.Delete
Exit For
End If
Next Y
Next x
谢谢你的帮助
1条答案
按热度按时间xxls0lw81#
用换行符连接注解。