Getting Textbox to show value of hidden Listbox column

  • Thread starter Thread starter Spidey3721
  • Start date Start date
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 ?
 
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.
 
Back
Top