Hi, I have a combo box (query) that shows the names of the queries, the ID number is hidden. I have a text box (referrals) that needs to contain the query types selected from the combo, thus say query XXX is selected in the combo, XXX is shown in the text box then suppose query YYY is selected, YYY shows in the list box below XXX and so on. The problem I have is that my code on the after update event on the cmb box works but instead of XXX an YYY showing in the text box, 1 and 2 show i.e. the IDs for XXX and YYY are displayed. I believe I can remedy this with dlookup but I am not confident in using. The code on the event is currently:
Private Sub cmb_AfterUpdate()
text = (text + vbCrLf) & cmb
End Sub
Thank U Darren.