Lookup

Dowsey1977

Board Regular
Joined
Apr 6, 2004
Messages
185
I have a table with loads of rows in it on 1 sheet of a spreadsheet. I also have another sheet with fewer rows. I need to compare the 2 sets of information and find out if there are any extra records on the 2nd sheet that aren't on the first. Is there any way of getting Excel todo this, so I don't have to do it manually?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
You can use VLOOKUP. Can you tell us a bit more about the structure of the spreadsheet, specifically, is there a key field which yuo would use to say this item is the same, or this item is extra and not included in the list.
 
Upvote 0
Ther first sheet has got loads of information in it, call it sheet 1. Sheet 2 has just the one column. Column C is the in sheet 1, and this is the column which should match column A in sheet 2.

Each record is unique in column C, so I need to know the ones that are in sheet 2, but not sheet 1.
 
Upvote 0
Ok, in sheet 2 column B starting at B1 (or B2 if yo uhave a header row)

enter this formula

=IF(ISERROR(VLOOKUP(A1,sheet1!$C$1:$C$999,1,false)),"Not Found","Found")

Change the C999 to whatever length your table in sheet1 is

then paste the formula down the length of column B as far as your data in sheet2 goes.
 
Upvote 0

Forum statistics

Threads
1,206,827
Messages
6,075,099
Members
446,121
Latest member
Malikai

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