how do I create a drop down list that assigns certain information

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a drop down list of employes. I would like it to
auotmatically bring up each employees specific pay rate in another cell.
 
Look at VLOOKUP function.

Create table of names and asociated pay rates.

In your "rate" cell:

=VLOOKUP(name,PayRates,2,0)

where "name" is cell of your drop down

PayRates is named range (2 columns) containinng names & rates

HTH
 
Back
Top