If the SQL you're showing is the RecordSource of your form, you need to
requery the form:
Private Sub cboevent_AfterUpdate()
Me.txteventlID = Me.cboevent
Me.Requery
End Sub
I don't see the point of the text box, though, to be honest, Why not simply
refer to the combo box in your SQL? (You'd still need the requery)

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Can anyone help with this issue please
>
[quoted text clipped - 19 lines]
>
> Whilts the value fills the text box the data is not filtered?
lez - 20 May 2008 19:13 GMT
Cheers, Thanks for that Douglas..doh....I knew it would be something simple.
I have taken the text box out now. I only had that their to act as a source,
and make sure the value was being passed.
Many thanks
> If the SQL you're showing is the RecordSource of your form, you need to
> requery the form:
[quoted text clipped - 30 lines]
>>
>> Whilts the value fills the text box the data is not filtered?