A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Excel 2007 drop down lists



 
 
Thread Tools Display Modes
  #1  
Old February 4th, 2010, 11:46 PM posted to microsoft.public.excel.worksheet.functions
Angela9520
external usenet poster
 
Posts: 2
Default Excel 2007 drop down lists

I would like to create a drop down list of number that, when selected, will
automatically fill out the the next cell with a name i.e.

I select No. 120 and the next cell automatically fills out the name as being
Angela9520. How can I do that? Ostensible I want to select a number and
have the name associated with that number appear in the next cell!
  #2  
Old February 5th, 2010, 12:09 AM posted to microsoft.public.excel.worksheet.functions
L. Howard Kittle
external usenet poster
 
Posts: 516
Default Excel 2007 drop down lists

I don't have 2007 but I think you can use VLOOKUP.

Something like this in B1 =VLOOKUP(A1,J1:K1,2,0)

Where A1 is the drop down and B1 has the formula and J is a list of the
numbers in the drop down and K is the corresponding names associated to that
number.

HTH
Regards,
Howard

"Angela9520" wrote in message
...
I would like to create a drop down list of number that, when selected, will
automatically fill out the the next cell with a name i.e.

I select No. 120 and the next cell automatically fills out the name as
being
Angela9520. How can I do that? Ostensible I want to select a number and
have the name associated with that number appear in the next cell!



  #3  
Old February 5th, 2010, 05:19 AM posted to microsoft.public.excel.worksheet.functions
Angela9520
external usenet poster
 
Posts: 2
Default Excel 2007 drop down lists

I tried that and it works find with the first number on the drop down list
but I can't seem to extend the formula so that the second number, if
selected, shows me the second name. This is assuming I am only using A1 to
select the number. I can use A2 and modify the formula but that isn't the
idea of a drop down list. Or perhaps my limited experience is preventing me
from seeing!

"L. Howard Kittle" wrote:

I don't have 2007 but I think you can use VLOOKUP.

Something like this in B1 =VLOOKUP(A1,J1:K1,2,0)

Where A1 is the drop down and B1 has the formula and J is a list of the
numbers in the drop down and K is the corresponding names associated to that
number.

HTH
Regards,
Howard

"Angela9520" wrote in message
...
I would like to create a drop down list of number that, when selected, will
automatically fill out the the next cell with a name i.e.

I select No. 120 and the next cell automatically fills out the name as
being
Angela9520. How can I do that? Ostensible I want to select a number and
have the name associated with that number appear in the next cell!



.

  #5  
Old February 5th, 2010, 06:40 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default Excel 2007 drop down lists

Howard gave you a one row lookup table range. You must extend that range.

=VLOOKUP(A1,$J$1:$K$20,2.FALSE) entered in B1

Assumes dropdown in A1 and a list of numbers in J1:J20 and list of names in
K1:K20


Gord Dibben MS Excel MVP


On Thu, 4 Feb 2010 21:19:01 -0800, Angela9520
wrote:

I tried that and it works find with the first number on the drop down list
but I can't seem to extend the formula so that the second number, if
selected, shows me the second name. This is assuming I am only using A1 to
select the number. I can use A2 and modify the formula but that isn't the
idea of a drop down list. Or perhaps my limited experience is preventing me
from seeing!

"L. Howard Kittle" wrote:

I don't have 2007 but I think you can use VLOOKUP.

Something like this in B1 =VLOOKUP(A1,J1:K1,2,0)

Where A1 is the drop down and B1 has the formula and J is a list of the
numbers in the drop down and K is the corresponding names associated to that
number.

HTH
Regards,
Howard

"Angela9520" wrote in message
...
I would like to create a drop down list of number that, when selected, will
automatically fill out the the next cell with a name i.e.

I select No. 120 and the next cell automatically fills out the name as
being
Angela9520. How can I do that? Ostensible I want to select a number and
have the name associated with that number appear in the next cell!



.


  #6  
Old February 5th, 2010, 06:59 PM posted to microsoft.public.excel.worksheet.functions
L. Howard Kittle
external usenet poster
 
Posts: 516
Default Excel 2007 drop down lists

Hi Gord,

Well that makes sense, I was not wrapping my head around what the OP was
shooting at.

H

"Gord Dibben" gorddibbATshawDOTca wrote in message
...
Howard gave you a one row lookup table range. You must extend that range.

=VLOOKUP(A1,$J$1:$K$20,2.FALSE) entered in B1

Assumes dropdown in A1 and a list of numbers in J1:J20 and list of names
in
K1:K20


Gord Dibben MS Excel MVP


On Thu, 4 Feb 2010 21:19:01 -0800, Angela9520
wrote:

I tried that and it works find with the first number on the drop down list
but I can't seem to extend the formula so that the second number, if
selected, shows me the second name. This is assuming I am only using A1
to
select the number. I can use A2 and modify the formula but that isn't the
idea of a drop down list. Or perhaps my limited experience is preventing
me
from seeing!

"L. Howard Kittle" wrote:

I don't have 2007 but I think you can use VLOOKUP.

Something like this in B1 =VLOOKUP(A1,J1:K1,2,0)

Where A1 is the drop down and B1 has the formula and J is a list of the
numbers in the drop down and K is the corresponding names associated to
that
number.

HTH
Regards,
Howard

"Angela9520" wrote in message
...
I would like to create a drop down list of number that, when selected,
will
automatically fill out the the next cell with a name i.e.

I select No. 120 and the next cell automatically fills out the name as
being
Angela9520. How can I do that? Ostensible I want to select a number
and
have the name associated with that number appear in the next cell!


.




  #7  
Old February 5th, 2010, 08:15 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default Excel 2007 drop down lists

I thought it was just a typo and you meant J1:K10g


Gord

On Fri, 5 Feb 2010 10:59:05 -0800, "L. Howard Kittle"
wrote:

Hi Gord,

Well that makes sense, I was not wrapping my head around what the OP was
shooting at.

H

"Gord Dibben" gorddibbATshawDOTca wrote in message
.. .
Howard gave you a one row lookup table range. You must extend that range.

=VLOOKUP(A1,$J$1:$K$20,2.FALSE) entered in B1

Assumes dropdown in A1 and a list of numbers in J1:J20 and list of names
in
K1:K20


Gord Dibben MS Excel MVP


On Thu, 4 Feb 2010 21:19:01 -0800, Angela9520
wrote:

I tried that and it works find with the first number on the drop down list
but I can't seem to extend the formula so that the second number, if
selected, shows me the second name. This is assuming I am only using A1
to
select the number. I can use A2 and modify the formula but that isn't the
idea of a drop down list. Or perhaps my limited experience is preventing
me
from seeing!

"L. Howard Kittle" wrote:

I don't have 2007 but I think you can use VLOOKUP.

Something like this in B1 =VLOOKUP(A1,J1:K1,2,0)

Where A1 is the drop down and B1 has the formula and J is a list of the
numbers in the drop down and K is the corresponding names associated to
that
number.

HTH
Regards,
Howard

"Angela9520" wrote in message
...
I would like to create a drop down list of number that, when selected,
will
automatically fill out the the next cell with a name i.e.

I select No. 120 and the next cell automatically fills out the name as
being
Angela9520. How can I do that? Ostensible I want to select a number
and
have the name associated with that number appear in the next cell!


.




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:03 AM.


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