Excel field comparisons

  • Thread starter Thread starter CG
  • Start date Start date
C

CG

I would like to compare a range of data against another
range of data:

1) The first range contains numerous names
2) The second range containts select names from #1
3) I want to pull out the matching names from #1 based on
the names listed in #2.

Is this possible with the IF function or another function?

Ultimately, I want to be able to pull all of the matched
information into a separate spreadsheet and then export
it into an Access database for further analysis.

Thought, comments, words of wisdom?
CG
 
...
1) The first range contains numerous names
2) The second range containts select names from #1
3) I want to pull out the matching names from #1 based on
the names listed in #2.

Is this possible with the IF function or another function?

Ultimately, I want to be able to pull all of the matched
information into a separate spreadsheet and then export
it into an Access database for further analysis.

You are talking about an INNER JOIN of #1 and #2. You can use SQL with
ADO and the OLE DB provider for Jet to query worksheets in an Excel
workbook. If you are using a Jet database in MS Access it may make
more sense to query the workbook direct.

--
 

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

Back
Top