if statements

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

Guest

I want to create a form that has a drop-down box to chose a persons name.
Depending on which name is chosen, I would like the sheet to fill in a
contact name. Example: If they chose Joe Blow as the Producer, the contact
would be Sally.
But if they chose Jim Jones, the contact would be Kelly. What is the
easiest way to do this?
 
Look at VLOOKUP; create table of person to contact e.g column A has person,
Column B has contact.

=vlookup(person,contacts,2,false)

where <person> is cell with name
<contacts> is two column table (as above)
2 selects item in second column (B) of <Contacts>

HTH
 

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