Finding Info from sheet 1 and removing only those rows from sheet

G

Guest

Hey Guys! My questions is quite complex I hope someone can help me with it...
I want to find information from Excel Sheet 1 and remove only those rows
from Excel Sheet 2. The repeated information has identical columns. For
Example:

|Column A| B| C| D|

Sheet 1:
| 1 | John Johnson | 1234 Fake Street Avenue | California |
| 3 | Jane Doe | 824 Main Street | Nevada |

Sheet 2:
| 1 | John Johnson | No address | None |
| 2 | Brad Gensen | No address | None |
| 3 | Jane Doe | No Address available |N/A|

and then find the identical info from sheet 1 and remove the cell row from
sheet 2, leaving me with :

Sheet 2:
| 2 | Brad Gensen | No address | None |

THANKS for your help guys! really appreciate it!

~johnny b
 
D

Dave Peterson

Why would Jane Doe be eliminated--it didn't match all the columns.

If I were doing it, I would insert a new column A on each sheet.

Then I'd use a formula to concatenate all the important fields needed to
compare.

=B1&"..."&c1&"..."&d1
(say)
and drag down
(do it in both worksheets)

Now I only have one field to compare and I can use some of the techniques at
Chip Pearson's site:
http://www.cpearson.com/excel/duplicat.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top