Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have created a drop down list/box in excel. However, I am trying get a
cell on another worksheet to read whatever gets chosen in the drop down list box. I have found a visual basic code for doing it using a list box, but can't seem to get it to work using a drop-down box. Any help would be gratefully appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you not just put ='Sheet1'!A1 or whatever the cell reference is?
"Sez" wrote: I have created a drop down list/box in excel. However, I am trying get a cell on another worksheet to read whatever gets chosen in the drop down list box. I have found a visual basic code for doing it using a list box, but can't seem to get it to work using a drop-down box. Any help would be gratefully appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you not just put the cell reference, eg. ='Sheet 1'!A1 for it to copy
this information? "Sez" wrote: I have created a drop down list/box in excel. However, I am trying get a cell on another worksheet to read whatever gets chosen in the drop down list box. I have found a visual basic code for doing it using a list box, but can't seem to get it to work using a drop-down box. Any help would be gratefully appreciated. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The drop down box does not sit in the cell - it sits on top - if I were to
use the ='Sheet1'!A1 cell reference - nothing would appears in the cell. "PaulW" wrote: Can you not just put ='Sheet1'!A1 or whatever the cell reference is? "Sez" wrote: I have created a drop down list/box in excel. However, I am trying get a cell on another worksheet to read whatever gets chosen in the drop down list box. I have found a visual basic code for doing it using a list box, but can't seem to get it to work using a drop-down box. Any help would be gratefully appreciated. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It depends on what a dropdown listbox is.
If you used a dropdown from the forms toolbar, you could use a linked cell to return the index of the selected item. Say you used A1:A10 as the Input range. And you used B1 as the Linked cell. You could put this in C1: =if(b1="","",index(a1:a10,b1)) If you used a combobox from the Control toolbox toolbar, you could use the value in that linked cell directly. For the dropdown from the Forms toolbar, you can rightclick on it, choose Format Control, then Control to get to the dialog for these settings. For the combobox from the control toolbox toolbar, you have to go into design mode (another icon on that same toolbar) and then rightclick and choose properties to see them. Sez wrote: I have created a drop down list/box in excel. However, I am trying get a cell on another worksheet to read whatever gets chosen in the drop down list box. I have found a visual basic code for doing it using a list box, but can't seem to get it to work using a drop-down box. Any help would be gratefully appreciated. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change drop down values based on another cell value? | Excel Discussion (Misc queries) | |||
"read only" cell in a given worksheet | Excel Discussion (Misc queries) | |||
Possible Lookup Table | Excel Worksheet Functions | |||
up to 7 functions? | Excel Worksheet Functions | |||
Using Jet to read excel file returns blank for last cell - sometim | Excel Discussion (Misc queries) |