Highlighting Email address responders

mas_lerdanch

Board Regular
Joined
Jun 25, 2007
Messages
64
I have two sheets in the same workbook, one has the original list of members emails that the questionaire was sent to and one has the list of members and emails that have responded. using this information I want to produce a third sheet that compares the two and displays a list of non responders email addresses so they can be reminded in the future.

Please help

Mas
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Like this??
Code:
Sub FindMe()
Dim cl As Range
Dim C As Range
For Each cl In Sheet2.Range("A2:A500")
Set C = Sheet1.Range("A2:A200").Find(cl.Text, LookIn:=xlValues)
If Not C Is Nothing Then
  cl.EntireRow.Copy Sheet3.Range("A" & Cells(Rows.Count, "A").End(xlUp).Row + 1)
Next cl
End Sub
lenze
 
Upvote 0
Looks great -thanks. Just not sure with my limited excel knowledge I'll be able to employ it. Any pointers please.
 
Upvote 0
Place it in a regular module. Open the VBE (ALT+F11) and choose Insert>Module. You may have to change your sheet references. Example: If your 1st sheet is Named "Mary" Then you can replace Sheet1 in the code with Sheets("Mary"). To run, open the Macro dialog (ALT+F8), select the nacro and click Run

lenze

lenze
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,038
Members
448,940
Latest member
mdusw

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