Self teacher

D a v e

New Member
Joined
Feb 27, 2015
Messages
3
I am very new to computers and maybe moving to fast. I don't even know what people are talking about most of the time until i research it. But i love a challenge and love what i read about what excel can do. So anyway I know what I want and I got part of it by using the if function but couldn't figure out the last few cells or how to continue the function when I changed the driver # since all 40 drivers are going to be using the same cells. So here goes. My main cell will have a drop down list with lets say 40 drivers. So when I bring up driver # 730 from there I need a function that will fill these cells with this info. For this example my drop down list is in cell A3
A C E G I
1. Driver # Driver Name Type Vehicle Fuel Type Driver/Owner
2.
3. 730

So if A3 = 730 then C3 is Charlie, E3 is Dock High, G3 is Diesel, I3 is Owner.
For A3 there is roughly 40 choices that the rest of the cells would change depending on what driver # was selected.. C3 is 40 different names. E3 Would either be Dock High, Cube, Sprinter, or Van. G3 would either be Diesel or Unleaded.and I3 would be Owner or Driver.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hi Dave,

Welcome to the board.

You will need to store this information in a Lookup Table so Excel knows which values to display when you pick a driver.

Here's an example of the Table:

Excel 2010
ABCDE
1DriverDriver NameType VehicleFuel TypeDriver/Owner
21DaveDock HighDieselOwner
32MaryDock HighPetrolDriver
43SteveDock HighDieselDriver
54JoDock HighPetrolOwner
65HannahDock HighPetrolDriver
Lookup Details


Then you can use a Function called VLOOKUP to display this information in your 'main' sheet based on the driver number that you select:


Excel 2010
ABCDEFGHI
2DriverDriver NameType VehicleFuel TypeDriver/Owner
31DaveDock HighDieselOwner
Sheet1
Cell Formulas
RangeFormula
C3=VLOOKUP($A3,'Lookup Details'!$A$1:$E$6,2,FALSE)
E3=VLOOKUP($A3,'Lookup Details'!$A$1:$E$6,3,FALSE)
G3=VLOOKUP($A3,'Lookup Details'!$A$1:$E$6,4,FALSE)
I3=VLOOKUP($A3,'Lookup Details'!$A$1:$E$6,5,FALSE)
 
Upvote 0
Well thank you so much for adding the examples. It really helps out alot when you don't understand exactly what it is everyone refers to. And I want to learn so it's alot of reading watching and and the best part of all trial by error.
 
Upvote 0

Forum statistics

Threads
1,214,589
Messages
6,120,416
Members
448,960
Latest member
AKSMITH

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