Hi,
I have a table in my db called ContractsT, which has a query linked to it called ContractNameSearchQ to search for contracts by a person's name. I have based a continuous form on the query to edit the contracts (EditContractsF).
My issue is that upon entering a new record in to the table, it does not always appear on the query (and thus the form). It seems to rely on entries in two specific fields to consider it for the query.
Here is the SQL code for the query:
Code:
SELECT PhysicianT.fullName, PhysicianT.physID, ContractsT.contractID, ContractsT.positions, ContractsT.contractStart, ContractsT.contractEnd, REFTypesT.contractType, ContractsT.notes, ContractsT.renewalCompleted, ContractsT.type, ContractsT.extraPos, ContractsT.posEnd1, ContractsT.posEnd2, ContractsT.posEnd3FROM REFTypesT INNER JOIN (PhysicianT INNER JOIN ContractsT ON PhysicianT.physID = ContractsT.fullName) ON REFTypesT.contractTypeID = ContractsT.type
WHERE (((PhysicianT.physID) Like [forms]![EditContractsF]![nameSelector] & "*"))
ORDER BY PhysicianT.fullName;
Thanks