Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've created a drop down list (e.g. Drop Down 4 in the "Data" sheet)
with some textual values in it. I would like to show the selected text value in some cells on varios sheets, like in a cell og the "Jun" sheet... How can I do this? regards, Ladyhawke |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You need to use Format Control, where you can then specify Input Range and
Cell Link. The Cell Link is the one you need. This will display the index no of the item in the drop down currently selected. You could then use VLOOKUP or INDEX on your other sheets to retrieve the actual item selected in the drop down. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How would Index or vlookup be used on the other sheets and are there
nop option to avoid storing the data once more (linked cell)? Martin Brader skrev: You need to use Format Control, where you can then specify Input Range and Cell Link. The Cell Link is the one you need. This will display the index no of the item in the drop down currently selected. You could then use VLOOKUP or INDEX on your other sheets to retrieve the actual item selected in the drop down. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Got index to work with named cells. Just out of curiosity: how do I
reference a cell in a sheet, so I can copy values from other sheets? regards, ladyhawke ladyhawke skrev: How would Index or vlookup be used on the other sheets and are there nop option to avoid storing the data once more (linked cell)? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
worksheets("House").Range("B9").Copy Activesheet.Range("F2")
-- Regards, Tom Ogilvy "ladyhawke" wrote: Got index to work with named cells. Just out of curiosity: how do I reference a cell in a sheet, so I can copy values from other sheets? regards, ladyhawke ladyhawke skrev: How would Index or vlookup be used on the other sheets and are there nop option to avoid storing the data once more (linked cell)? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Real Newbie newbie question | New Users to Excel | |||
Newbie question Pulling data from one sheet to another based on | New Users to Excel | |||
Newbie form show prob | Excel Programming | |||
Newbie question about accessing Excel sheet from the web | Excel Programming | |||
Newbie Question: Returning the value from a cell on another sheet | Excel Programming |