G
Guest
I found very useful information about multiple select in the following website
http://allenbrowne.com/ser-50.html
it works ok but my question is my listbox source comes a query that contains
union select query, as follows,
SELECT employee!EmplLastName & ", " & employee!EmplFirstName AS Name,
employee.EmplID
FROM Team INNER JOIN employee ON Team.TeamID = employee.TeamID
ORDER BY employee!EmplLastName & ", " & employee!EmplFirstName,
employee.EmplLastName
UNION select '[*** All Employees ***]', -1 from Team;
How do i open my report when there is a -1 as the employee ID
http://allenbrowne.com/ser-50.html
it works ok but my question is my listbox source comes a query that contains
union select query, as follows,
SELECT employee!EmplLastName & ", " & employee!EmplFirstName AS Name,
employee.EmplID
FROM Team INNER JOIN employee ON Team.TeamID = employee.TeamID
ORDER BY employee!EmplLastName & ", " & employee!EmplFirstName,
employee.EmplLastName
UNION select '[*** All Employees ***]', -1 from Team;
How do i open my report when there is a -1 as the employee ID