combo box with more then one link

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

Guest

Hi

I know i ask similer question before but this one bit more complex!

Ok let me make it as simple as i can, i have in sheet1 three column A,B,C,
in (column A) names, in (Column B) Fone No, and in ( column C) Email.

In sheet2 there is Combo box but this combo box is from CONTROL TOOL BOX NOT
FROM FORMS!! so let say i select name from thjat combo box then below it it
iwll show fone no and below that email of that person i selected.

Note: i know how to view fone No but i do not know how to view the email at
the same time.

Please help me guys and thank u very much and i will be looking forward to
hear from u soon
 
I would use a linked cell hidden under the combobox from the Control toolbox
toolbar to return the name.

Then use that value to show the phone number:

Say you're using A1:A3 of sheet2.

In A2:
=if(a1="","",vlookup(a1,sheet1!a:c,2,false))

In A3:
=if(a1="","",vlookup(a1,sheet1!a:c,3,false))

This will work ok if the names are unique--no duplicate names!
 
In the dropdown area, yep.

In the combobox itself, no.

In the linked cell, no.

Well, I've never seen a way.

But you could use some code to control as many cells as you want.
 

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

Similar Threads

Combo box 2
Combo box range change 5
Combo Box 1
Graph linked with combo boxes 2
how do I load combo box from Excel columns? 1
Combo Box & Array??? 2
Combo Box and VLOOKUP 7
Combo Box, show multiple columns 1

Back
Top