L
ljg08
Can anyone help with this issue please
I have a form to list clients. On the form I have a combo box with a list of
events
I want the users to select an event from the combo box and filter the fom
data to list just the clients interested in this event.
I have a text box on the form [txteventID] which gets the value of the combo
selection
Private Sub cboevent_AfterUpdate()
Me.txteventlID = Me.cboevent
End Sub
and have tried :
SELECT tblcontact.userID, tblcontact.eventlID, tblcontact.contact_last,
tblcontact.contact_first
FROM tblcontact
WHERE (((tblcontact.referalID)=[Forms]![frmEvents]![txteventlID]));
Whilts the value fills the text box the data is not filtered?
I have a form to list clients. On the form I have a combo box with a list of
events
I want the users to select an event from the combo box and filter the fom
data to list just the clients interested in this event.
I have a text box on the form [txteventID] which gets the value of the combo
selection
Private Sub cboevent_AfterUpdate()
Me.txteventlID = Me.cboevent
End Sub
and have tried :
SELECT tblcontact.userID, tblcontact.eventlID, tblcontact.contact_last,
tblcontact.contact_first
FROM tblcontact
WHERE (((tblcontact.referalID)=[Forms]![frmEvents]![txteventlID]));
Whilts the value fills the text box the data is not filtered?