M
MJ
I currently have:
INSERT INTO tblClients ( Client_ID, Client_Name,
Client_Address, Client_PostCode )
SELECT tblClients.Client_ID, tblClients.Client_Name,
tblClients.Client_Address, tblClients.Client_PostCode
FROM tblClients
WHERE (((tblClients.Client_Name)=[Forms]![frmAdd_Client]!
[txtClientName]) AND ((tblClients.Client_Address)=[Forms]!
[frmAdd_Client]![lblClientAddress]) AND
((tblClients.Client_PostCode)=[Forms]![frmAdd_Client]!
[txtClientPostCode]));
As a append query. All the fields/forms exist. When I try
to run the query, give it the correct values it asks me
do I want to append 0 rows? Basically it's not working.
Any ideas?
Thanks
MJ
INSERT INTO tblClients ( Client_ID, Client_Name,
Client_Address, Client_PostCode )
SELECT tblClients.Client_ID, tblClients.Client_Name,
tblClients.Client_Address, tblClients.Client_PostCode
FROM tblClients
WHERE (((tblClients.Client_Name)=[Forms]![frmAdd_Client]!
[txtClientName]) AND ((tblClients.Client_Address)=[Forms]!
[frmAdd_Client]![lblClientAddress]) AND
((tblClients.Client_PostCode)=[Forms]![frmAdd_Client]!
[txtClientPostCode]));
As a append query. All the fields/forms exist. When I try
to run the query, give it the correct values it asks me
do I want to append 0 rows? Basically it's not working.
Any ideas?
Thanks
MJ