Flow data from one workbook to another

C

cindyj

I have two spreadsheets that basically track the same thing but have to have
two different formats and slightly different information. Is it possible to
set up the lesser of the two to just auto pull the information when I enter
it into the larger of the two...Here is an example of my info.

Spreadsheet 1 (larger of the two - I would be doing actual data entry on
this one)
A B C D E
Ship Date Customer Load # Weight Reference #
02-Jan-09 Bob COL001 5,000 ABC
02-Jan-09 Sally COL002 7,500 123

Spreadsheet 2 (only need to bring over certain columns of information based
upon the value in the LOAD # column of original spreadsheet - value will NOT
always be unique, it will have duplicates)
A B C
Load # Ship Date Customer
COL001 02-Jan-09 Bob
COL002 02-Jan-09 Sally

Any ideas???
 
J

JBeaucaire

Standard LOOKUP function.

After entering a Load #, the following formula can lookup the rest:

Date:
=LOOKUP(A2,[Book1.xls]Sheet1!$D$2:$D$1000,[Book1.xls]Sheet1!$A$2:$A$1000

Customer:
=LOOKUP(A2,[Book1.xls]Sheet1!$D$2:$D$1000,[Book1.xls]Sheet1!$C$2:$C$1000
 

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