Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to populate a cell with text based upon a drop down list
selection. I have tried the following but when tested, results are not always correct (a toucan is a bird, but a palmino is not a dog) Also, african grey returns #N/A. =LOOKUP(G16,{"pointer","collie","poodle","palomino ","thoroughbred","quarter","parakeet","african grey","toucan"},{"dog","dog","dog","horse","horse" ,"horse","bird","bird","bird"}) What am I missing? Drop Down List pulls from a source within the worksheet. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Important The values in array must be placed in ascending order:
....,-2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE; otherwise, LOOKUP may not give the correct value. Uppercase and lowercase text are equivalent. -- Don Guillett Microsoft MVP Excel SalesAid Software "Thalarctos" wrote in message ... I am trying to populate a cell with text based upon a drop down list selection. I have tried the following but when tested, results are not always correct (a toucan is a bird, but a palmino is not a dog) Also, african grey returns #N/A. =LOOKUP(G16,{"pointer","collie","poodle","palomino ","thoroughbred","quarter","parakeet","african grey","toucan"},{"dog","dog","dog","horse","horse" ,"horse","bird","bird","bird"}) What am I missing? Drop Down List pulls from a source within the worksheet. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
They lookup vector has to be sorted =LOOKUP(A1,{"african grey","collie","palomino","parakeet","pointer","po odle","quarter","thoroughbread","toucan"},{"Bird", "dog","horse","bird","dog","dog","horse","horse"," bird"}) -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Thalarctos" wrote: I am trying to populate a cell with text based upon a drop down list selection. I have tried the following but when tested, results are not always correct (a toucan is a bird, but a palmino is not a dog) Also, african grey returns #N/A. =LOOKUP(G16,{"pointer","collie","poodle","palomino ","thoroughbred","quarter","parakeet","african grey","toucan"},{"dog","dog","dog","horse","horse" ,"horse","bird","bird","bird"}) What am I missing? Drop Down List pulls from a source within the worksheet. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You have a couple of solutions, but I would do this:
Create a new sheet (name it AnimalTable Create a table in columns A:B Column A is the pointer, collie, poodle, .. Column B is the type of animal Then I could use: =vlookup(g16,animaltable!a:b,2,0) I find that dedicated tables on dedicated worksheets like this are easier to update. Thalarctos wrote: I am trying to populate a cell with text based upon a drop down list selection. I have tried the following but when tested, results are not always correct (a toucan is a bird, but a palmino is not a dog) Also, african grey returns #N/A. =LOOKUP(G16,{"pointer","collie","poodle","palomino ","thoroughbred","quarter","parakeet","african grey","toucan"},{"dog","dog","dog","horse","horse" ,"horse","bird","bird","bird"}) What am I missing? Drop Down List pulls from a source within the worksheet. -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you - I sorted the list for the drop down, but didn't change the order
in the formula. "Mike H" wrote: Hi, They lookup vector has to be sorted =LOOKUP(A1,{"african grey","collie","palomino","parakeet","pointer","po odle","quarter","thoroughbread","toucan"},{"Bird", "dog","horse","bird","dog","dog","horse","horse"," bird"}) -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Thalarctos" wrote: I am trying to populate a cell with text based upon a drop down list selection. I have tried the following but when tested, results are not always correct (a toucan is a bird, but a palmino is not a dog) Also, african grey returns #N/A. =LOOKUP(G16,{"pointer","collie","poodle","palomino ","thoroughbred","quarter","parakeet","african grey","toucan"},{"dog","dog","dog","horse","horse" ,"horse","bird","bird","bird"}) What am I missing? Drop Down List pulls from a source within the worksheet. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to populate a drop down list based on the selection of ano | Excel Discussion (Misc queries) | |||
How to Auto-populate cell based on selection of a list item | Excel Discussion (Misc queries) | |||
auto populate cell based on previous cell drop down list selectio. | Excel Discussion (Misc queries) | |||
Auto populate several cells based on a selection from drop down li | Excel Discussion (Misc queries) | |||
need to populate several cells based on drop down menu selection | Excel Discussion (Misc queries) |