assign file numbers to names

  • Thread starter Thread starter NeSchw6G
  • Start date Start date
N

NeSchw6G

There are about 500 managers, when I choose a manager's name from a drop down
(in a form) I want excel to insert the manager's file number in an adjacent
cell.

i.e. Joe Button - 1875
Sally Field - 1745
Carl Redding - 1590
 
Try this:

Say you have the list feeding the drop down in A5:A7 and the manager file
numbers in B5:B7

In column D put the drop down list letting the users pick the manager
In column E, next to the managers name, put the following formula

=IF(ISBLANK(D5),"",VLOOKUP(D5,$A$5:$B$7,2,FALSE))

The ISBLANK function is used to prevent error indicators from appearing when
a cell in column D is empty

Perhaps add protection for the data in column E
 
It worked! Thank you!

Flick Olmsford said:
Try this:

Say you have the list feeding the drop down in A5:A7 and the manager file
numbers in B5:B7

In column D put the drop down list letting the users pick the manager
In column E, next to the managers name, put the following formula

=IF(ISBLANK(D5),"",VLOOKUP(D5,$A$5:$B$7,2,FALSE))

The ISBLANK function is used to prevent error indicators from appearing when
a cell in column D is empty

Perhaps add protection for the data in column E
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top