Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 661
Default Extracting Data back and forth between Sheets

I have loaded a customer data base with name, number, and email addy in three
separate columns on one page. On another page, is my weekly planning sheet.
How can I type a name on my weekly planning sheet (also located on the
customer page) in column A and have Excel automatically bring forward the
corresponding phone number (column B) and the email (column C) from the other
sheet? Also, is it possible that when I type the result of my converstation
in Column D, that it can aoutomatically be transfered to another page, where
the data can be continuously added instead of being rewritten over the
specified cell. Thank you very much for the help. Paul
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Extracting Data back and forth between Sheets

You can use VLOOKUP for the first part of your question. Assume
customer database occupies A1 to C100 in a sheet called Customers.
Assume you enter the name in A1 of your other sheet - put this formula
in B1 to bring across the phone number:

=VLOOKUP(A1,Customers!$A$1:$C$100,2,0)

and this one in C1 to retrieve the email address:

=VLOOKUP(A1,Customers!$A$1:$C$100,3,0)

If you want to have several customers' names in column A, copy the
formulae down B and C for as many names as you have in A.

You can use column D to record the outcome of your conversation, but I
think you will have to copy and paste it to your third sheet if you
want to keep it and re-use D1. Alternatively, you could do this with a
macro, perhaps with a button to activate the transfer.

Hope this helps.

Pete


On Jul 15, 8:00 pm, Paul wrote:
I have loaded a customer data base with name, number, and email addy in three
separate columns on one page. On another page, is my weekly planning sheet.
How can I type a name on my weekly planning sheet (also located on the
customer page) in column A and have Excel automatically bring forward the
corresponding phone number (column B) and the email (column C) from the other
sheet? Also, is it possible that when I type the result of my converstation
in Column D, that it can aoutomatically be transfered to another page, where
the data can be continuously added instead of being rewritten over the
specified cell. Thank you very much for the help. Paul



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default Extracting Data back and forth between Sheets

To extract data:

with Customer name in A2:

in B2:

=VLOOKUP(A2,Customer!$A:$C,2,0)

in C2:

=VLOOKUP(A2,Customer!$A:$C,3,0)

"Customer" is your Customer DB w/sheet

RE update of "conversation":

You will need worksheet event (VBA) code to write the data; how will it be
organised on the w/sheet?

HTH

"Paul" wrote:

I have loaded a customer data base with name, number, and email addy in three
separate columns on one page. On another page, is my weekly planning sheet.
How can I type a name on my weekly planning sheet (also located on the
customer page) in column A and have Excel automatically bring forward the
corresponding phone number (column B) and the email (column C) from the other
sheet? Also, is it possible that when I type the result of my converstation
in Column D, that it can aoutomatically be transfered to another page, where
the data can be continuously added instead of being rewritten over the
specified cell. Thank you very much for the help. Paul

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 661
Default Extracting Data back and forth between Sheets


The data could be stored in one cell, but I thought it could be stored in a
column with each new notation going to a new cell. Thank you for the help

"Toppers" wrote:

To extract data:

with Customer name in A2:

in B2:

=VLOOKUP(A2,Customer!$A:$C,2,0)

in C2:

=VLOOKUP(A2,Customer!$A:$C,3,0)

"Customer" is your Customer DB w/sheet

RE update of "conversation":

You will need worksheet event (VBA) code to write the data; how will it be
organised on the w/sheet?

HTH

"Paul" wrote:

I have loaded a customer data base with name, number, and email addy in three
separate columns on one page. On another page, is my weekly planning sheet.
How can I type a name on my weekly planning sheet (also located on the
customer page) in column A and have Excel automatically bring forward the
corresponding phone number (column B) and the email (column C) from the other
sheet? Also, is it possible that when I type the result of my converstation
in Column D, that it can aoutomatically be transfered to another page, where
the data can be continuously added instead of being rewritten over the
specified cell. Thank you very much for the help. Paul

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Extracting Data for .Txt Files By Unique Field Data La Excel Discussion (Misc queries) 3 July 17th 06 01:30 PM
Sheets Tabs moved to Right Side of Page. How to get back to Left ? Corey Excel Worksheet Functions 3 July 7th 06 04:56 AM
Extracting cell information from various sheets to a master list JackR Excel Discussion (Misc queries) 0 March 20th 06 02:51 PM
sheets back to formulas J. Freed Excel Discussion (Misc queries) 4 May 7th 05 12:17 AM
how do I tell excell 2003 to print sheets back to front? goochiepepper Excel Discussion (Misc queries) 1 December 22nd 04 03:35 PM


All times are GMT +1. The time now is 11:34 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"