Hello,
How can I list one user name instead of multiple?
Example:
I have the following filter used to locate an update record. The filter query is attached to a combo box and list the names of users. Currently the names are listed as follows:
June
June
June
I would like to list only one "June". Here is the query.
<BEGIN QUERY>
SELECT tech_table.t_id, [tech_firstname]+" "+
[tech_lastname] AS Name, tech_table.current_status
FROM tech_table
WHERE (((tech_table.current_status)="Active"))
ORDER BY [tech_firstname]+" "+[tech_lastname];
<END QUERY>
Thank you so much for your assistance.
How can I list one user name instead of multiple?
Example:
I have the following filter used to locate an update record. The filter query is attached to a combo box and list the names of users. Currently the names are listed as follows:
June
June
June
I would like to list only one "June". Here is the query.
<BEGIN QUERY>
SELECT tech_table.t_id, [tech_firstname]+" "+
[tech_lastname] AS Name, tech_table.current_status
FROM tech_table
WHERE (((tech_table.current_status)="Active"))
ORDER BY [tech_firstname]+" "+[tech_lastname];
<END QUERY>
Thank you so much for your assistance.