Forestq

Active Member
Joined
May 9, 2010
Messages
482
hi,

in sheet1 I have source table:
CarYearColorType
Audi2000RedSport
BMW2001BlackCoupe
Volvo1998YellowCombi
VW1996Black-
Fiat2003RedFamily

<tbody>
</tbody>
Then in sheet2 in A1 I will be selecting car name (Audi, BMW etc).

Now if I choose "Audi" I want to in sheet2 in table display all data contains information about audi.

Column "CAR" will be contains ONLY uniqe names (audi, fiat will occur only once).

Example:
A1 = Audi

Audi2000RedSport

<tbody>
</tbody>

Do you know what formula I should use ? You can just help me with one (like how to display year). I know that I can you vlookup, but is other way?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi
This is how I would do it.
Create a range name for your column titles on sheet 1 (covering Car to Type) (say, ColTitles)
I would then create a validation list using the Car column as the source. In the following columns, I'd use a formula like so:
=VLOOKUP($H2,Sheet1!$A$2:$D$6,MATCH(I$1,ColTitles,0),FALSE)
H2 refers to the cell containing your list of cars to choose from
Sheet1!A2:D6 refers to the range of your table of car details (excluding the title row), and
I1 is the name of the column you want to get details for the chosen car.
So on sheet2, it would look something like this if you chose VW:
Car Year Color Type
VW 1996 Black -
Or this:
Car Year Color Type
BMW 2001 Black Coupe
if you chose BMW
Hope that helps/makes sense
Martin
 
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,183
Members
449,071
Latest member
cdnMech

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top