Excel - Compare spreadsheets and indicate matched data

D

debvan

I have two spreadsheets that I need to compare. The common data is product
numbers. One spreadsheet will remain static but the other (bill of materials
- BOM) will be updated weekly. The static spreadsheet indicates parts to be
scrapped. I need to check the BOM spreadsheet to see if it contains any of
the scrapped part numbers. The second step is to then indicate those parts
as scrapped in a new column on the BOM spreadsheet.

I have some intermediate skills in Excel so an easy solution would be
appreciated.
 
M

M Kan

I do this for employee rosters too. I would use a VLOOKUP with an IF-ISERROR
combo. The formula would look up the BOM part number and if it finds it on
the static page, it returns a message "scrapped" and if it doesn't find it,
it would retun an error, which could be cleaned to show a blank cell.
Something like (for 2003)

=IF(ISERROR(VLOOKUP(part_number, static page, col ref, FALSE),"part
scrapped","").
 
D

debvan

Peo, thanks for the website. I was able to use VLOOKUP for this but
appreciate knowing other resources for future reference.
 

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