I have a frmClients that shows clients' jobs in a subform, linked by ContactID.
Some contacts have large numbers of jobs. My client uses CTRL+F in the subform's JobID field to search for a particular job but says this can be very slow.
Is there an alternative, eg putting a finder combo in the subform? I've tried this with SQL source that I thought would limit JobIDs to the current contact but it doesn't update when moving to another contact.
Code:
SELECT qryJobs.JobID, qryJobs.ContactID
FROM qryJobs
WHERE (((qryJobs.ContactID)=[forms]![frmClients].[ContactID]))
Any suggestions much appreciated.