我使用下面的代码来比较rng1和rng2,并显示MsgBox中的所有差异。代码可以工作,但是如果没有发现差异,我需要避免显示消息框。一如既往,我们非常感谢你的帮助。
Option Explicit
Sub Test_Copied_Data2()
Dim Sh1 As Worksheet: Set Sh1 = Sheets("Auto")
Dim Sh2 As Worksheet: Set Sh2 = Sheets("Closed_Items")
Dim rng1 As Range, rng2 As Range, A As Range, LastRow As Long
Set rng1 = Sh1.Range("A2:A22")
Dim Count_rng1 As Long
Count_rng1 = WorksheetFunction.CountA(rng1)
If Count_rng1 = 0 Then Exit Sub
LastRow = Sh2.Cells(Rows.Count, "B").End(xlUp).Row
Set rng2 = Sh2.Range("B" & Count_rng1 & ":" & "B" & LastRow)
Dim Msg As String
Msg = "These Item not found in sheet 'Closed_Items' : " & vbNewLine
For Each A In rng1
If Len(A.value) > 0 And Application.CountIf(rng2, A.value) = 0 Then
Msg = Msg & A.value & vbNewLine
End If
Next
Msg = Left(Msg, Len(Msg) - 2)
MsgBox Msg
End Sub发布于 2021-12-25 12:42:21
Dim msg As String
For Each A In rng1
If Len(A.Value) > 0 And Application.CountIf(rng2, A.Value) = 0 Then
msg = msg & vbLf & A.Value
End If
Next
If Len(msg) > 0 Then
MsgBox "These Item not found in sheet 'Closed_Items' : " & msg, vbExclamation
Else
'MsgBox "OK", vbInformation
End Ifhttps://stackoverflow.com/questions/70480023
复制相似问题