Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default vlookup for client list

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default vlookup for client list

Maybe you didn't specify the right tabla array or Col_index_num. E.g. if you
have Id + 2 columns of data in columns A:C of Sheet2 then
=VLOOKUP(A2;Sheet2!A:C;2;FALSE)
returns value from column B,
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)
returns value from column C.
Regards,
Stefi

€žxololady€ť ezt Ă*rta:

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default vlookup for client list

Is it possible to fill in several columns at the same time with different
info, like name, birthdate, sex, etc? If not Vlookup, is there another
formula? I think Vlookup is only useful for one column of info.

"Stefi" wrote:

Maybe you didn't specify the right tabla array or Col_index_num. E.g. if you
have Id + 2 columns of data in columns A:C of Sheet2 then
=VLOOKUP(A2;Sheet2!A:C;2;FALSE)
returns value from column B,
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)
returns value from column C.
Regards,
Stefi

€žxololady€ť ezt Ă*rta:

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 698
Default vlookup for client list

Hi Karen,

This should work for you.

=VLOOKUP(A8,B1:L5,{2,3,4,5,6,7,8,9,10,11},0)

Where A8 has the client ID to be looked up, (perhaps using a data valadation
drop down).

B1:L5 is the client information, with the client ID's in the B column and
the associated info for that client in the 10 cells to the right.

Select 10 cells in the row where you want the client data to be displayed,
something like C8:L8. While still selected, type the formula above in the
'white' cell of the selected cells. Now hold Crtl Shift down and hit
Enter.

You will get curly brackets around the formula in the formula bar and your
data should be displayed in the selected cells. (Do not type the curly
brackets into the formula, Excel will do that when you commit the formula.

If you need to edit/change the formula you must select ALL the cells again,
make your changes and use CTRL SHIFT ENTER again.

HTH
Regards,
Howard

"xololady" wrote in message
...
I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only
get
client ID and name (first 2 columns) without the other columns. I want to
be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default vlookup for client list

Just relook at VLOOKUP function help..

=VLOOKUP(lookupvalue,A:K,3,0)
should return the value from column C (which is the 3rd column of array A:K)

=VLOOKUP(lookupvalue,B:K,2,0)
should return the value from column C (which is the 2nd column of array B:E)

If this post helps click Yes
---------------
Jacob Skaria


"xololady" wrote:

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default vlookup for client list

You can try this formula in the left top cell and copy down/across as
required..
=VLOOKUP(lookupvalue,B:K,COLUMN(A2),0)

If this post helps click Yes
---------------
Jacob Skaria


"xololady" wrote:

Is it possible to fill in several columns at the same time with different
info, like name, birthdate, sex, etc? If not Vlookup, is there another
formula? I think Vlookup is only useful for one column of info.

"Stefi" wrote:

Maybe you didn't specify the right tabla array or Col_index_num. E.g. if you
have Id + 2 columns of data in columns A:C of Sheet2 then
=VLOOKUP(A2;Sheet2!A:C;2;FALSE)
returns value from column B,
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)
returns value from column C.
Regards,
Stefi

€žxololady€ť ezt Ă*rta:

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,646
Default vlookup for client list

VLOOKUP can do what you are looking for, in this way:
If name is in column B then
=VLOOKUP(A2;Sheet2!A:B;2;FALSE)
returns name,
if birthdate is in column C then
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)
returns birthdate,
if sex is in column D then
=VLOOKUP(A2;Sheet2!A:D;4;FALSE)
returns sex, etc.

Another way is MATCH and INDEX, in this case you have to use a helper column
(in my example I) with
=MATCH(A2;Sheet2!A:A;0)
in it, and
=INDEX(Sheet2!B:B;I2)
returns name,
=INDEX(Sheet2!C:C;I2)
returns birthdate,
=INDEX(Sheet2!D:D;I2)
returns sex, etc.

Regards,
Stefi

€žxololady€ť ezt Ă*rta:

Is it possible to fill in several columns at the same time with different
info, like name, birthdate, sex, etc? If not Vlookup, is there another
formula? I think Vlookup is only useful for one column of info.

"Stefi" wrote:

Maybe you didn't specify the right tabla array or Col_index_num. E.g. if you
have Id + 2 columns of data in columns A:C of Sheet2 then
=VLOOKUP(A2;Sheet2!A:C;2;FALSE)
returns value from column B,
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)
returns value from column C.
Regards,
Stefi

€žxololady€ť ezt Ă*rta:

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 120
Default vlookup for client list

It is possible to do what you want,
" Is it possible to fill in several columns at the same time with different
info, like name, birthdate, sex, etc? "

Mutiple Vlookups will do the jobs.
Just change the column reference, from

=VLOOKUP(A2;Sheet2!A:C;2;FALSE) to
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)

Post back id you need more clarifications


--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis




"xololady" wrote:

Is it possible to fill in several columns at the same time with different
info, like name, birthdate, sex, etc? If not Vlookup, is there another
formula? I think Vlookup is only useful for one column of info.

"Stefi" wrote:

Maybe you didn't specify the right tabla array or Col_index_num. E.g. if you
have Id + 2 columns of data in columns A:C of Sheet2 then
=VLOOKUP(A2;Sheet2!A:C;2;FALSE)
returns value from column B,
=VLOOKUP(A2;Sheet2!A:C;3;FALSE)
returns value from column C.
Regards,
Stefi

€žxololady€ť ezt Ă*rta:

I am working on a billing spreadsheet. Each client has a client ID plus
other details over 11 columns. I created client list with their specific
info. When I try to use a VLOOKUP formula on new worksheet, I can only get
client ID and name (first 2 columns) without the other columns. I want to be
able to type client id number and have the rest of the info automatically
fill in the row. Please tell me what I am missing.

Thank you, Karen

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
fill in client list for bill xololady Excel Discussion (Misc queries) 2 August 12th 09 12:35 AM
How do i mail merge a client list from Excel? Tammy Excel Discussion (Misc queries) 2 September 25th 08 04:50 PM
Client list price update tljeffrey21 Excel Worksheet Functions 5 January 9th 06 11:06 AM
How do I make the Excel progam alphabetize my client list? Rogue1965 New Users to Excel 1 January 13th 05 09:17 PM
Excel client list in to Outlook shann18 Excel Discussion (Misc queries) 1 December 18th 04 01:14 AM


All times are GMT +1. The time now is 02:04 AM.

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"