Thread: Merge Sheets
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Merge Sheets

One way ..

Assume col A in Sheet1 is to be compared with col D in Sheet2

In Sheet1,

Put in say, E2:
=IF(A2="","",ISNUMBER(MATCH(A2,Sheet2!D:D,0)))
Copy down to the last row of data in col A. Now you can autofilter on col E.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"ajk" wrote:
I want to merge two sheets and use the merged data in a new sheet.

Both my sheets contains similar info but there are fields that differ.

I need Column A from one sheet to look in Column D of the other one to see
if that one contains the same info. A simple return like False or True would
be enough for me.

One sheet contains 2500 entries and the other 4500.

I'll filter the results afterwards.

Any help would be appreciated

kubersluiper