jordanking
Programmer
- Sep 8, 2005
- 351
Hello,
Is there a way to use an update query where the value to be updated is only appended to the existing value.
in ACCESS 2002
for exaMPLE:
I want the "CC DECLINED" to be added to the end of the memo field and not just replace the entire contes of the field.
Basically I want to get around having to execute another query to capture that value and then pass the concantenated values to the update query.
JK
Is there a way to use an update query where the value to be updated is only appended to the existing value.
in ACCESS 2002
for exaMPLE:
Code:
UPDATE tblReturns LEFT JOIN tblCustomer ON tblReturns.lCusID = tblCustomer.idsCustomerID SET tblCustomer.lngzAccountStatus = 2, tblCustomer.memInfo = "CC DECLINED"
WHERE (((tblReturns.F10) Not Like "APPROVED * ="));
I want the "CC DECLINED" to be added to the end of the memo field and not just replace the entire contes of the field.
Basically I want to get around having to execute another query to capture that value and then pass the concantenated values to the update query.
JK