Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Jessica C. Jara
 
Posts: n/a
Default Help with combo box, please!!!!!!

Hi there,

I am creating a workbook and I can not find the way to make my combo box
work how I want it to:

I have a spreadsheet with names, colum a from 1 - 89. With this list I have
created a combo box, on Colum B, from 1 - 89 rates ($). What I would like to
do is every time I change the name in the combo box I want cell B to show me
that persons rate.

Is there anyone that can help!!!!!

I've been working on this same problem for a week, I'm going crazy Please
help!!!
Thanks!!!!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Marcelo
 
Posts: n/a
Default Help with combo box, please!!!!!!

Hi Jessica if I understand what you have is

Col A Col B
name1 $10.00
name2 $12.00
....
name88 $7.00

your combo box have a bond cell right? assuming it is on A100 this cell will
change the value for each name select.

insert a column before A, put an ID so

COL A COL B COL C
1 name1 $10.00

use a =VLOOKUP($A$100,$A$1:$C$89,3,0)

and excel will return the Col C value

HTH
Regards from Brazil
Marcelo

"Jessica C. Jara" escreveu:

Hi there,

I am creating a workbook and I can not find the way to make my combo box
work how I want it to:

I have a spreadsheet with names, colum a from 1 - 89. With this list I have
created a combo box, on Colum B, from 1 - 89 rates ($). What I would like to
do is every time I change the name in the combo box I want cell B to show me
that persons rate.

Is there anyone that can help!!!!!

I've been working on this same problem for a week, I'm going crazy Please
help!!!
Thanks!!!!

  #3   Report Post  
Posted to microsoft.public.excel.misc
Jessica C. Jara
 
Posts: n/a
Default Help with combo box, please!!!!!!


Marcelo!!! You did it, you're a genius. Thank you so much. I have been
working with this all week!!!!

Obrigado!!!! Moito (I think)

Jessie


"Marcelo" wrote:

Hi Jessica if I understand what you have is

Col A Col B
name1 $10.00
name2 $12.00
...
name88 $7.00

your combo box have a bond cell right? assuming it is on A100 this cell will
change the value for each name select.

insert a column before A, put an ID so

COL A COL B COL C
1 name1 $10.00

use a =VLOOKUP($A$100,$A$1:$C$89,3,0)

and excel will return the Col C value

HTH
Regards from Brazil
Marcelo

"Jessica C. Jara" escreveu:

Hi there,

I am creating a workbook and I can not find the way to make my combo box
work how I want it to:

I have a spreadsheet with names, colum a from 1 - 89. With this list I have
created a combo box, on Colum B, from 1 - 89 rates ($). What I would like to
do is every time I change the name in the combo box I want cell B to show me
that persons rate.

Is there anyone that can help!!!!!

I've been working on this same problem for a week, I'm going crazy Please
help!!!
Thanks!!!!

  #4   Report Post  
Posted to microsoft.public.excel.misc
Marcelo
 
Posts: n/a
Default Help with combo box, please!!!!!!

thanks for the feedback and you are close is
Muito obrigado!!!!

regards

"Jessica C. Jara" escreveu:


Marcelo!!! You did it, you're a genius. Thank you so much. I have been
working with this all week!!!!

Obrigado!!!! Moito (I think)

Jessie


"Marcelo" wrote:

Hi Jessica if I understand what you have is

Col A Col B
name1 $10.00
name2 $12.00
...
name88 $7.00

your combo box have a bond cell right? assuming it is on A100 this cell will
change the value for each name select.

insert a column before A, put an ID so

COL A COL B COL C
1 name1 $10.00

use a =VLOOKUP($A$100,$A$1:$C$89,3,0)

and excel will return the Col C value

HTH
Regards from Brazil
Marcelo

"Jessica C. Jara" escreveu:

Hi there,

I am creating a workbook and I can not find the way to make my combo box
work how I want it to:

I have a spreadsheet with names, colum a from 1 - 89. With this list I have
created a combo box, on Colum B, from 1 - 89 rates ($). What I would like to
do is every time I change the name in the combo box I want cell B to show me
that persons rate.

Is there anyone that can help!!!!!

I've been working on this same problem for a week, I'm going crazy Please
help!!!
Thanks!!!!

  #5   Report Post  
Posted to microsoft.public.excel.misc
Jessica C. Jara
 
Posts: n/a
Default Help with combo box, please!!!!!!

Marcelo, I have another inconvenient: Though you did get that option awesome,
I need to do the same with another 5 options, is that possible to do? I'm
trying it but it doesn't happen.

ANy help appreciated. Thanks!!!!

"Marcelo" wrote:

thanks for the feedback and you are close is
Muito obrigado!!!!

regards

"Jessica C. Jara" escreveu:


Marcelo!!! You did it, you're a genius. Thank you so much. I have been
working with this all week!!!!

Obrigado!!!! Moito (I think)

Jessie


"Marcelo" wrote:

Hi Jessica if I understand what you have is

Col A Col B
name1 $10.00
name2 $12.00
...
name88 $7.00

your combo box have a bond cell right? assuming it is on A100 this cell will
change the value for each name select.

insert a column before A, put an ID so

COL A COL B COL C
1 name1 $10.00

use a =VLOOKUP($A$100,$A$1:$C$89,3,0)

and excel will return the Col C value

HTH
Regards from Brazil
Marcelo

"Jessica C. Jara" escreveu:

Hi there,

I am creating a workbook and I can not find the way to make my combo box
work how I want it to:

I have a spreadsheet with names, colum a from 1 - 89. With this list I have
created a combo box, on Colum B, from 1 - 89 rates ($). What I would like to
do is every time I change the name in the combo box I want cell B to show me
that persons rate.

Is there anyone that can help!!!!!

I've been working on this same problem for a week, I'm going crazy Please
help!!!
Thanks!!!!



  #6   Report Post  
Posted to microsoft.public.excel.misc
paul
 
Posts: n/a
Default Help with combo box, please!!!!!!

you want to dispay another 5 columns?.Just copy your vlookup formula across
increasing the
col a
=VLOOKUP($A$100,$A$1:$C$89,3,0)
colb
=VLOOKUP($A$100,$A$1:$C$89,4,0)
colc
=VLOOKUP($A$100,$A$1:$C$89,5,0)
etc etc

--
paul

remove nospam for email addy!



"Jessica C. Jara" wrote:

Marcelo, I have another inconvenient: Though you did get that option awesome,
I need to do the same with another 5 options, is that possible to do? I'm
trying it but it doesn't happen.

ANy help appreciated. Thanks!!!!

"Marcelo" wrote:

thanks for the feedback and you are close is
Muito obrigado!!!!

regards

"Jessica C. Jara" escreveu:


Marcelo!!! You did it, you're a genius. Thank you so much. I have been
working with this all week!!!!

Obrigado!!!! Moito (I think)

Jessie


"Marcelo" wrote:

Hi Jessica if I understand what you have is

Col A Col B
name1 $10.00
name2 $12.00
...
name88 $7.00

your combo box have a bond cell right? assuming it is on A100 this cell will
change the value for each name select.

insert a column before A, put an ID so

COL A COL B COL C
1 name1 $10.00

use a =VLOOKUP($A$100,$A$1:$C$89,3,0)

and excel will return the Col C value

HTH
Regards from Brazil
Marcelo

"Jessica C. Jara" escreveu:

Hi there,

I am creating a workbook and I can not find the way to make my combo box
work how I want it to:

I have a spreadsheet with names, colum a from 1 - 89. With this list I have
created a combo box, on Colum B, from 1 - 89 rates ($). What I would like to
do is every time I change the name in the combo box I want cell B to show me
that persons rate.

Is there anyone that can help!!!!!

I've been working on this same problem for a week, I'm going crazy Please
help!!!
Thanks!!!!

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
Macro that can run combo boxes simonsmith Excel Discussion (Misc queries) 0 June 5th 06 05:00 PM
Nesting Combo Boxes /Returning an Array ELMONDO SNITHER Excel Discussion (Misc queries) 1 June 30th 05 01:15 AM
Dynamic Combo Box benjarfer Excel Worksheet Functions 2 April 8th 05 02:17 PM
connecting combo boxes to yield data in another cell. TxN8tv Excel Discussion (Misc queries) 0 March 14th 05 04:07 PM
dynamic combo boxes tjb Excel Worksheet Functions 2 January 25th 05 07:33 PM


All times are GMT +1. The time now is 03:34 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"