Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default How do I put combo box values into cells (without using @CHOOSE)

I am using a combo box to select from a very long list. In order to save
repeating the process of selecting from the combo box on each sheet in the
workbook I would like to transfer the value displaid in the first combo into
a cell on each of the other sheets. The list is too long to use the @CHOOSE
function.

Any ideas?

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 751
Default How do I put combo box values into cells (without using @CHOOSE)

On Mar 8, 2:06 pm, LongTermNoob
wrote:
I am using a combo box to select from a very long list. In order to save
repeating the process of selecting from the combo box on each sheet in the
workbook I would like to transfer the value displaid in the first combo into
a cell on each of the other sheets. The list is too long to use the @CHOOSE
function.

Any ideas?

Thanks.


Go to a cell in another worksheet where you would want your value
transfered. Type =. Without cancelling the editing process, navigate
to the sheet with the combo box and point to the linked cell. Click
and press Enter. Repeat for the other sheets. If it is the same cell
(e.g. F3) in all other sheets, then you can select all the other
shifts (Shift+click on the sheet tab) and do the process once.

HTH
Kostis Vezerides

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default How do I put combo box values into cells (without using @CHOOS

Thanks, but that copies the corresponding list value, not the actual value in
the combo box, and I would then need to use @CHOOSE to get the corresponding
data. As I said - the list is way too long for that!


"vezerid" wrote:

On Mar 8, 2:06 pm, LongTermNoob
wrote:
I am using a combo box to select from a very long list. In order to save
repeating the process of selecting from the combo box on each sheet in the
workbook I would like to transfer the value displaid in the first combo into
a cell on each of the other sheets. The list is too long to use the @CHOOSE
function.

Any ideas?

Thanks.


Go to a cell in another worksheet where you would want your value
transfered. Type =. Without cancelling the editing process, navigate
to the sheet with the combo box and point to the linked cell. Click
and press Enter. Repeat for the other sheets. If it is the same cell
(e.g. F3) in all other sheets, then you can select all the other
shifts (Shift+click on the sheet tab) and do the process once.

HTH
Kostis Vezerides


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 751
Default How do I put combo box values into cells (without using @CHOOS

On Mar 8, 3:04 pm, LongTermNoob
wrote:
Thanks, but that copies the corresponding list value, not the actual value in
the combo box, and I would then need to use @CHOOSE to get the corresponding
data. As I said - the list is way too long for that!

"vezerid" wrote:
On Mar 8, 2:06 pm, LongTermNoob
wrote:
I am using a combo box to select from a very long list. In order to save
repeating the process of selecting from the combo box on each sheet in the
workbook I would like to transfer the value displaid in the first combo into
a cell on each of the other sheets. The list is too long to use the @CHOOSE
function.


Any ideas?


Thanks.


Go to a cell in another worksheet where you would want your value
transfered. Type =. Without cancelling the editing process, navigate
to the sheet with the combo box and point to the linked cell. Click
and press Enter. Repeat for the other sheets. If it is the same cell
(e.g. F3) in all other sheets, then you can select all the other
shifts (Shift+click on the sheet tab) and do the process once.


HTH
Kostis Vezerides


Ahh, I see. CHOOSE is one option. But you can also use VLOOKUP. You
can have a column of numbers (1, 2, 3,...) before your range that
contains the labels of your combo box. Then, if a combo box is linked
to a cell, say F3, where the index number of the label is stored, you
can retrieve the label with:

=VLOOKUP(F3,Labels!A:B,2,0)

Here we assume that the labels are in sheet called Labels and that the
values were moved to column B:B after inserting the numbers in column
A:A.

Does this help?
Kostis

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default How do I put combo box values into cells (without using @CHOOS

Yes it does. I hadn't considered using VLOOKUP. I have some awkward mods to
do to my table, but it should work fine.

Thanks for the help,

"vezerid" wrote:

On Mar 8, 3:04 pm, LongTermNoob
wrote:
Thanks, but that copies the corresponding list value, not the actual value in
the combo box, and I would then need to use @CHOOSE to get the corresponding
data. As I said - the list is way too long for that!

"vezerid" wrote:
On Mar 8, 2:06 pm, LongTermNoob
wrote:
I am using a combo box to select from a very long list. In order to save
repeating the process of selecting from the combo box on each sheet in the
workbook I would like to transfer the value displaid in the first combo into
a cell on each of the other sheets. The list is too long to use the @CHOOSE
function.


Any ideas?


Thanks.


Go to a cell in another worksheet where you would want your value
transfered. Type =. Without cancelling the editing process, navigate
to the sheet with the combo box and point to the linked cell. Click
and press Enter. Repeat for the other sheets. If it is the same cell
(e.g. F3) in all other sheets, then you can select all the other
shifts (Shift+click on the sheet tab) and do the process once.


HTH
Kostis Vezerides


Ahh, I see. CHOOSE is one option. But you can also use VLOOKUP. You
can have a column of numbers (1, 2, 3,...) before your range that
contains the labels of your combo box. Then, if a combo box is linked
to a cell, say F3, where the index number of the label is stored, you
can retrieve the label with:

=VLOOKUP(F3,Labels!A:B,2,0)

Here we assume that the labels are in sheet called Labels and that the
values were moved to column B:B after inserting the numbers in column
A:A.

Does this help?
Kostis


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
CHOOSE function - Possible with 100 values??? Fecozisk Excel Discussion (Misc queries) 1 July 12th 06 09:22 AM
listing values to choose from based on value in another cell MT Excel Discussion (Misc queries) 1 September 12th 05 01:37 PM
how i choose the column from a combo box Alberto Vargas Excel Discussion (Misc queries) 4 July 22nd 05 11:07 PM
How do I choose multiple values in a drop down box? Kristy Excel Discussion (Misc queries) 3 April 1st 05 04:49 PM
How do I choose multiple values in an excel drop down box? Kristy Excel Discussion (Misc queries) 1 March 31st 05 12:04 AM


All times are GMT +1. The time now is 03:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"