J
JR
I am trying to find a way to take the following query:
SELECT Timeslip.EmployeeID, Timeslip.Day, Timeslip.TaskName, Timeslip.Hours,
Timeslip.TaskType, Timeslip.Comments
FROM Timeslip
WHERE (((Timeslip.EmployeeID)="4.0363"));
and
1) make the Where statement dependent on a control on either a form or report
2) get the result into a report in the least number of clicks for the user.
Thanks.
JR
SELECT Timeslip.EmployeeID, Timeslip.Day, Timeslip.TaskName, Timeslip.Hours,
Timeslip.TaskType, Timeslip.Comments
FROM Timeslip
WHERE (((Timeslip.EmployeeID)="4.0363"));
and
1) make the Where statement dependent on a control on either a form or report
2) get the result into a report in the least number of clicks for the user.
Thanks.
JR