Try
SQLstring = "Select JobID FROM Job where (JobID = " & cmbo.Value & ")"
You've got the opening ( before the WHERE, rather than after. You could
omit the bracketing here, since it's not needed to force an evaluation
order. You may also need a closing ; in the SQL string. All of this may
mean that what you really need is:
SQLstring = "Select JobID FROM Job where JobID = " & cmbo.Value & ";"
HTH,
Rob
> Hi! I've been looking at other questions posted here and have tried to
> replicate one of the solutions proposed with no success.
[quoted text clipped - 5 lines]
> I don't have any filters (either on the form or on the server) I have
> Debug.Printed my SQL and it looks fine .... Please, what am I doing wrong?