Thread: linked data
View Single Post
  #2   Report Post  
Max
 
Posts: n/a
Default

One way via VLOOKUP ..

Assume you have the reference table below in say, Sheet2, cols A to C

Name Tel Add
N1 T1 Add1
N2 T2 Add2
N3 T3 Add3
N4 T4 Add4
N5 T5 Add5
etc

Suppose your form is in Sheet1,
where A1 contains the DV to select the names: N1, N2, N3 ...

To retrieve the associated Tel #, use:
=VLOOKUP(A1,Sheet2!A:C,2,0)

To retrieve the associated Address, use:
=VLOOKUP(A1,Sheet2!A:C,3,0)

--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----
"mjstizzle" wrote in message
...
Thanks in advance for the assistance.
In a pre-existing form with a drop-down box containing multiple text
selections, I am trying to link the selection of that drop down box to
auto-fill the rest of a form. (For example, when I select a name from a
drop-down box, the associated phone number and address would automatically
appear in their respective boxes on the form)