#1   Report Post  
SlicK
 
Posts: n/a
Default Combo Box

Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with specific data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box on ROW 1.
What I need to do is display in say ROW 2 the data that is on the entire row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the Models
availalable.

Hope this makes sense

SlicK




  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi SlicK

You can use the Vlookup function with as lookup value the combobox value

--
Regards Ron de Bruin
http://www.rondebruin.nl


"SlicK" wrote in message ...
Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with specific data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box on ROW 1.
What I need to do is display in say ROW 2 the data that is on the entire row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the Models
availalable.

Hope this makes sense

SlicK






  #3   Report Post  
SlicK
 
Posts: n/a
Default

"Ron de Bruin" wrote in message
...
Hi SlicK

You can use the Vlookup function with as lookup value the combobox value

--
Regards Ron de Bruin
http://www.rondebruin.nl


"SlicK" wrote in message

...
Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with specific

data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box on ROW 1.
What I need to do is display in say ROW 2 the data that is on the entire

row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the Models
availalable.

Hope this makes sense

SlicK






Hi Ron

When I use
=VLOOKUP(A1,A5:K177,2)
It only displays the data from Column B(i.e the 2 at the end of the formula)
in that specific cell.
Is it possible to display the data from say 10 cells on that row?

cheers



  #4   Report Post  
Bob Phillips
 
Posts: n/a
Default

Do you mean the 10th column?

=VLOOKUP(A1,A5:K177,10)


--

HTH

RP
(remove nothere from the email address if mailing direct)


"SlicK" wrote in message
...
"Ron de Bruin" wrote in message
...
Hi SlicK

You can use the Vlookup function with as lookup value the combobox value

--
Regards Ron de Bruin
http://www.rondebruin.nl


"SlicK" wrote in message

...
Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with specific

data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box on ROW

1.
What I need to do is display in say ROW 2 the data that is on the

entire
row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the Models
availalable.

Hope this makes sense

SlicK






Hi Ron

When I use
=VLOOKUP(A1,A5:K177,2)
It only displays the data from Column B(i.e the 2 at the end of the

formula)
in that specific cell.
Is it possible to display the data from say 10 cells on that row?

cheers





  #5   Report Post  
SlicK
 
Posts: n/a
Default


"Bob Phillips" wrote in message
...
Do you mean the 10th column?

=VLOOKUP(A1,A5:K177,10)


--

HTH

RP
(remove nothere from the email address if mailing direct)


"SlicK" wrote in message
...
"Ron de Bruin" wrote in message
...
Hi SlicK

You can use the Vlookup function with as lookup value the combobox

value

--
Regards Ron de Bruin
http://www.rondebruin.nl


"SlicK" wrote in message

...
Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with

specific
data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box on

ROW
1.
What I need to do is display in say ROW 2 the data that is on the

entire
row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the Models
availalable.

Hope this makes sense

SlicK






Hi Ron

When I use
=VLOOKUP(A1,A5:K177,2)
It only displays the data from Column B(i.e the 2 at the end of the

formula)
in that specific cell.
Is it possible to display the data from say 10 cells on that row?

cheers





Hi Bob

No i need to show columns 2 to 10 (in equal cells that is)

cheers




  #6   Report Post  
Bob Phillips
 
Posts: n/a
Default

Then use

=VLOOKUP(A1,A5:K177,COLUMN(B1))

and copy across the cells


--

HTH

RP
(remove nothere from the email address if mailing direct)


"SlicK" wrote in message
...

"Bob Phillips" wrote in message
...
Do you mean the 10th column?

=VLOOKUP(A1,A5:K177,10)


--

HTH

RP
(remove nothere from the email address if mailing direct)


"SlicK" wrote in message
...
"Ron de Bruin" wrote in message
...
Hi SlicK

You can use the Vlookup function with as lookup value the combobox

value

--
Regards Ron de Bruin
http://www.rondebruin.nl


"SlicK" wrote in message
...
Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with

specific
data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box on

ROW
1.
What I need to do is display in say ROW 2 the data that is on the

entire
row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the Models
availalable.

Hope this makes sense

SlicK






Hi Ron

When I use
=VLOOKUP(A1,A5:K177,2)
It only displays the data from Column B(i.e the 2 at the end of the

formula)
in that specific cell.
Is it possible to display the data from say 10 cells on that row?

cheers





Hi Bob

No i need to show columns 2 to 10 (in equal cells that is)

cheers




  #7   Report Post  
SlicK
 
Posts: n/a
Default


"Bob Phillips" wrote in message
...
Then use

=VLOOKUP(A1,A5:K177,COLUMN(B1))

and copy across the cells


--

HTH

RP
(remove nothere from the email address if mailing direct)


"SlicK" wrote in message
...

"Bob Phillips" wrote in message
...
Do you mean the 10th column?

=VLOOKUP(A1,A5:K177,10)


--

HTH

RP
(remove nothere from the email address if mailing direct)


"SlicK" wrote in message
...
"Ron de Bruin" wrote in message
...
Hi SlicK

You can use the Vlookup function with as lookup value the combobox

value

--
Regards Ron de Bruin
http://www.rondebruin.nl


"SlicK" wrote in message
...
Hi

I have a list of data.
Column A is the Subject and then there is say 10 columns with

specific
data
relevant to that Subject.

I have all the Subjects from Column A in a drop down Combo box

on
ROW
1.
What I need to do is display in say ROW 2 the data that is on

the
entire
row
that matches what is chosen from the Combo box.

so for example.
The subject is car manufacturer(Ford, Vauxhall, Volkswagon)
The rows would contain each model.
When I chose the manufacturer it would tell me in ROW 2 the

Models
availalable.

Hope this makes sense

SlicK






Hi Ron

When I use
=VLOOKUP(A1,A5:K177,2)
It only displays the data from Column B(i.e the 2 at the end of the
formula)
in that specific cell.
Is it possible to display the data from say 10 cells on that row?

cheers





Hi Bob

No i need to show columns 2 to 10 (in equal cells that is)

cheers




Bob

U da man!!
Works a treat.

cheers



  #8   Report Post  
Bob Phillips
 
Posts: n/a
Default

"SlicK" wrote in message
...

Bob

U da man!!
Works a treat.

cheers


Glad we cracked it mate!

Regards

Bob


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
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
"Combo Box - getting control combo box to stick in place in worksh ajr Excel Discussion (Misc queries) 1 February 16th 05 02:05 AM
dynamic combo boxes tjb Excel Worksheet Functions 2 January 25th 05 07:33 PM
How do I autofill combo boxes with their destination cell? Defoes Right Boot Excel Worksheet Functions 3 January 10th 05 12:49 PM


All times are GMT +1. The time now is 08:30 AM.

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

About Us

"It's about Microsoft Excel"