Getting Textbox to show value of hidden Listbox column

S

Spidey3721

Wondering what the simplest way is:

I want a textbox to show a value from a listbox that Is NOT the bound
column. Is the easiest way to use DLOOKUP ?
 
R

Rick Brandt

Spidey3721 said:
Wondering what the simplest way is:

I want a textbox to show a value from a listbox that Is NOT the bound
column. Is the easiest way to use DLOOKUP ?

If the TextBox is on the same form...

=ListBoxName.Column(n)

....where n is the zero based number of the column you want. Whether the
column is hidden or bound doesn't matter.
 
Top