+ Reply to Thread
Results 1 to 3 of 3

Transfer specific data onto new sheet

  1. #1
    Registered User
    Join Date
    04-25-2013
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2010
    Posts
    76

    Question Transfer specific data onto new sheet

    Hi,

    I have tried many formulas and none seem to work....do what I want.

    What I am trying to do is use my patient's list with personal info transferred onto a new sheet but using only specific cells.

    Sheet1 will have a list of patient names with their hospital number, address, telephone, medical issue(s), surgery, products needed, etc. BUT, I want to create a medical form for each but individually.

    Sheet1 data is entered in by a nurse. I want her to be able to select which patient will need which form and then be able to fill in the blanks.

    Being in a hospital, we are short-staffed (like pretty much everywhere) and I want to create this for her to avoid her taking 20 minutes per patient. By having a list, a part-time secretary can then fill in the blanks and save in the correct folder (each patient has their own electronic folder).

    On each form (there are 3), I need the name, hospital number, address and phone number. Each form will be for different institutions (government help, certificate of eligibility and product company supply). However, on Sheet1, there is more information for statistical purposes (in all, is about 10 columns).

    Can this easily be done or am I dreaming big?

    Thanks.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Transfer specific data onto new sheet

    Yes, it can be done. The logic steps you will need to accomplish:

    1) Create a named range of the names on the sheet1 to make entering the names on the other sheets simpler.
    1. Select Sheet1
    2. Press CTRL-F3 to open the Name Manager
    3. Click NEW
    4. Under NAME use something like PatientNames (notice there is no space)
    5. Under RefersTo: use this dynamic formula that will grab all the names in column A starting at A2:
      =Sheet1!$A$2:INDEX(Sheet1!$A:$A, COUNTA(Sheet1!$A:$A)-1)
    6. Click OK to save.... now you have a "list" you can use on other sheets to help enter names


    2) On your forms, use this list in the cell where the patient names are to be typed.
    1. Click on the form's Patient Name field
    2. Open the Data > Validation settings for this cell
    3. Use these settings:
      • Allow: List
      • Source: =PatientNames
    4. Now you can use the drop down list to select a name. You can type free hand, but it will have to match exactly.

    3) Now on the rest of your form fields, use VLOOKUP formulas to draw back information from Sheet1 by matching the value from your Patient Name field. Do this on all your forms.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    04-25-2013
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2010
    Posts
    76

    Re: Transfer specific data onto new sheet

    Thank you! It worked!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1