filling data in based on other cells

kijutsu

New Member
Joined
Aug 3, 2011
Messages
1
Hi,


I have 2 spreadsheets - the first contains all the client information (name, address, phone, etc.) as well as a client ID number.

The second spreadsheet is for specific clients only, when they move into the second stage of the program they will go on this spreadsheet.

I want to be able to enter just the client ID in the second spreadsheet and have it complete the rest of the information automatically.

The first and second spreadsheet won't have all the ID's / be all in the same order as they won't all move across at the same time.
Is there any way to do this?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi,


I have 2 spreadsheets - the first contains all the client information (name, address, phone, etc.) as well as a client ID number.

The second spreadsheet is for specific clients only, when they move into the second stage of the program they will go on this spreadsheet.

I want to be able to enter just the client ID in the second spreadsheet and have it complete the rest of the information automatically.

The first and second spreadsheet won't have all the ID's / be all in the same order as they won't all move across at the same time.
Is there any way to do this?


Maybe like this?

Sheet1

A B C D
Client ID Name Address Phone
1 John Newark 973
2 Will Paterson 201
3 Rob AP 732


Sheet2
A B C D
ID Name Address Phone


Formulas in Sheet2

B2 =IF(ISNA(VLOOKUP(A2,Sheet1!$A$3:$D$5,2,FALSE)),"",VLOOKUP(A2,Sheet1!$A$3:$D$5,2,FALSE))

C2 =IF(ISNA(VLOOKUP(A2,Sheet1!$A$3:$D$5,3,FALSE)),"",VLOOKUP(A2,Sheet1!$A$3:$D$5,3,FALSE))

D2=IF(ISNA(VLOOKUP(A2,Sheet1!$A$3:$D$5,4,FALSE)),"",VLOOKUP(A2,Sheet1!$A$3:$D$5,4,FALSE))


Cells B2:D2 copied down.
 
Upvote 0

Forum statistics

Threads
1,224,509
Messages
6,179,194
Members
452,893
Latest member
denay

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top