Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

combo box bound columns

Status
Not open for further replies.

ronmon

IS-IT--Management
Feb 25, 2002
66
IE
is there anyway way to point towards a different column in a combo box instead of the bound column using VBA
 
you can do something like this:

Dim colValue As String

colValue = Me.Combo1.Column(1, 1)

where the first 1 in the parameter is the column number and the other 1 is the row number.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top