Good evening,
I have an Append Query which appends personal details from a Mail List Table to a Leavers Table when members Leave the organisation. The coding used to achieve this is as follows;
INSERT INTO Leavers ( [Member ID], Surname, [First Name], [Address 1], [Address 2], Town, PostCode, Phone, [E-Mail], Notes, Joined )
SELECT [Mail List].[Member ID], [Mail List].Surname, [Mail List].[First Name], [Mail List].[Address 1], [Mail List].[Address 2], [Mail List].Town, [Mail List].PostCode, [Mail List].Phone, [Mail List].[E-Mail], [Mail List].Notes, [Mail List].Joined
FROM [Mail List]
WHERE ((([Mail List].Leaving)=True));
I am trying to add the date of leaving to a LeaveDate field in the Leavers Table when the Append Query is activated. I have tried adding Date() to the append data but without success.
Any suggestions to achieve this apparently simple procedure would be appreciated.
Regards,
jcbhydro
I have an Append Query which appends personal details from a Mail List Table to a Leavers Table when members Leave the organisation. The coding used to achieve this is as follows;
INSERT INTO Leavers ( [Member ID], Surname, [First Name], [Address 1], [Address 2], Town, PostCode, Phone, [E-Mail], Notes, Joined )
SELECT [Mail List].[Member ID], [Mail List].Surname, [Mail List].[First Name], [Mail List].[Address 1], [Mail List].[Address 2], [Mail List].Town, [Mail List].PostCode, [Mail List].Phone, [Mail List].[E-Mail], [Mail List].Notes, [Mail List].Joined
FROM [Mail List]
WHERE ((([Mail List].Leaving)=True));
I am trying to add the date of leaving to a LeaveDate field in the Leavers Table when the Append Query is activated. I have tried adding Date() to the append data but without success.
Any suggestions to achieve this apparently simple procedure would be appreciated.
Regards,
jcbhydro