I need help...................

WildDaisy

New Member
Joined
Mar 7, 2002
Messages
2
I'm pretty to Excel. I have two workbooks....one has Admitting data in it and the other is discharge data.

I want to be able to type in the information info in to the admit sheet (patient number, name, etc.)

Then, when I open the Discharge sheet and input the patient name I would like to have it pull the data over from the Admitting sheet, so I don't have to input duplicate information.

Can someone please help me with this?
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Hi WildDaisy

To get you started, try the VLOOKUP formula
Create 2 workbooks. Name one ADMIT and the other DISCHARGE
Put these details in the first 4 columns of ADMIT in Sheet1
A B C D
Patient No Name Address Age
1 Jim road 20
2 Fred street 30
3 Pete lane 40
4 Meg avenue 50

Put these details in the first 4 columns of DISCHARGE in Sheet1
A B C D
Patient No Name Address Age
1
2
3
4

In Sheet1 of DISCHARGE, select cell B2 and carry out this procedure
type =VLOOKUP(
Select cell A2 notice in the command line that this has added A2 to your formula
Press F4 on your keyboard 3 times till the A2 in your formula becomes $A2
(the $ before the column A keeps your formula fixed to that column when you scroll it )
type a comma
Select ADMIT, Sheet1 and the whole range from A2 to D5
( notice in the command line this has added your array
as an absolute reference - ie both row and column are preceded by $)
type a comma
type: 2 this designates that you want data returned from column 2 or your array
type a comma
type: False this allows a search of the patient number even if they are not in sequence and returns error is match not found.
type: )
Immediately press enter.
You now have the following formula =VLOOKUP($A2,[Admit.xls]Sheet1!$A$2:$D$5,2) in cell B2
Now Select B2
Put your cursor over the bottom right corner of this cell till the pointer becomes a black cross
Hold down left mouse and drag right to cell D2
Select cell C2 and change the last 2 in the formula to 3 (to get data from column 3). PRESS ENTER
Select cell D2 and change the last 2 in the formula to 4 (to get data from column 4) PRESS ENTER
Select range B2:D2
Put your cursor over the bottom right corner of this range till the pointer becomes a black cross
Hold down left mouse and drag down to cell D5

By using the patient number as a reference you have now obtained data from the ADMIT sheet.

Read the Help file on VLOOKUP and you will soon be an expert.

Good luck
Derek
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,752
Members
448,989
Latest member
mariah3

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