Compare Two Worksheets with VBA if No Value Hightlight Missing value

Guna13

Board Regular
Joined
Nov 22, 2019
Messages
70
Office Version
  1. 365
Platform
  1. Windows
Hi, Please support me, How to Find Missing Emp ID in Master Data Sheet, to compare Source Date Sheet. Requirement all the ID should be in Master Data Sheet.

If any ID is missing in Master data sheet, Hightlight in Msgbox.

1674585399827.png
1674585415819.png
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try this:

VBA Code:
Sub comparesheets()
  Dim c As Range, f As Range
  Dim cad As String
  
  For Each c In Sheets("Source").Range("A2", Sheets("Source").Range("A" & Rows.Count).End(3))
    Set f = Sheets("Master").Range("A:A").Find(c.Value, , xlValues, xlWhole, , , False)
    If f Is Nothing Then
      c.Interior.Color = vbYellow
      cad = cad & c.Value & vbCr
    End If
  Next
  MsgBox cad, , "Missing ID"
End Sub
 
Upvote 0
Solution
Try this:

VBA Code:
Sub comparesheets()
  Dim c As Range, f As Range
  Dim cad As String
 
  For Each c In Sheets("Source").Range("A2", Sheets("Source").Range("A" & Rows.Count).End(3))
    Set f = Sheets("Master").Range("A:A").Find(c.Value, , xlValues, xlWhole, , , False)
    If f Is Nothing Then
      c.Interior.Color = vbYellow
      cad = cad & c.Value & vbCr
    End If
  Next
  MsgBox cad, , "Missing ID"
End Sub
Great @DanteAmor - Thanks for your Great Support...
 
Upvote 0

Forum statistics

Threads
1,215,446
Messages
6,124,900
Members
449,194
Latest member
JayEggleton

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top