C
Chris
I have set up a Form that has a combo box. When something in selected in the
combo box it automatically runs a query. The problem that I am having is
that I don't believe that the query is picking up the name correctly. The
query is designed to grab a name form a table(The name may be listed several
different times) and show a report of everything that related to that name.
However when the query is run it just has a blank report as if it doesn't
recgonize the name. I will post the SQL of the query but if there is
something else that I would need to post for help please let me know.
SELECT Users.UserName, CompleteList.DirectoryName
FROM Users INNER JOIN CompleteList ON Users.UsersID = CompleteList.UserName
WHERE (((Users.UserName)=[Forms]![PersonAccess]![cboSearch]));
combo box it automatically runs a query. The problem that I am having is
that I don't believe that the query is picking up the name correctly. The
query is designed to grab a name form a table(The name may be listed several
different times) and show a report of everything that related to that name.
However when the query is run it just has a blank report as if it doesn't
recgonize the name. I will post the SQL of the query but if there is
something else that I would need to post for help please let me know.
SELECT Users.UserName, CompleteList.DirectoryName
FROM Users INNER JOIN CompleteList ON Users.UsersID = CompleteList.UserName
WHERE (((Users.UserName)=[Forms]![PersonAccess]![cboSearch]));