Comparing 2 spreadhsheets

  • Thread starter Thread starter Emilystorey
  • Start date Start date
E

Emilystorey

How can I filter 2 spreadsheets to include only those entries that ar
on both?

sheet 1 has ref number and address' of all, sheet 2 has ref number an
oputstanding balances of those that have overdue payments. I want t
send mailmerge letters to those customers with outstanding balances bu
need to access their addresses from the other spreadsheet - there ar
toomany to do manually.:confused
 
Emilystorey said:
How can I filter 2 spreadsheets to include only those entries that are
on both?

sheet 1 has ref number and address' of all, sheet 2 has ref number and
oputstanding balances of those that have overdue payments. I want to
send mailmerge letters to those customers with outstanding balances but
need to access their addresses from the other spreadsheet - there are
toomany to do manually.:confused:

One way to get the addresses of those with outstanding balances ...

ASSUME that in sheet 1, column A has the reference numbers and column B
has the addressess.

ASSUME that the range in Sheet 1 is A2:B500

ASSUME that in sheet 2, column A has the reference numbers and column B
has the outstanding balances.

ASSUME that your data in Sheet 2 starts in Cell A2.

And with all these assumptions, enter this formula is Cell C2 of sheet
2,

=IF(B2=\"\",\"\",VLOOKUP(A2,SHEET1!$A$2:$B$500,2,0))

and copy down until your range requirement in Sheet 2 is met.

Column C of sheet 2 will now show you the addresses of those with
outstanding balances.

Hope this will help you...

Regards.
 

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

Similar Threads


Back
Top