referencing dropdown column diffferent to boun column

dubmunkey

Registered User.
Local time
Today, 00:47
Joined
Jan 6, 2006
Messages
62
hi,

im wanting to reference a value of a dropdown which is already serving a function - the dopdown already has it's bound set to 3 but i want this new function to refercne the second column-

im tyring:

"Tutor = '" & Me.ComboStaff.Value(2) & "'"

which isn't working- how do i reference the second column of a dropdown if its bound to its third?

cheers

dubs
 
Code:
"Tutor = '" & Me.ComboStaff.Column(1) & "'"
Using .Column(0) refers to the first column.
 
nice one, ill try that

dubs
 

Users who are viewing this thread

Back
Top Bottom