Hi All
I am looking to simply insert a set value "To Be Contacted" into a field if its empty.
Can i use an append query to append a record with the above statement rather than drawing from another table?
INSERT INTO CustomerDetails ( ContactNote, ContactNote )
SELECT CustomerDetails.ContactNote, CustomerDetails.ContactNote
FROM CustomerDetails
WHERE (((CustomerDetails.ContactNote) Is Null));
THis statement is my starting point, but as you can see i need to alter the first INSERT INTO statement to refelct this
Alternatively does anyone else know of a method of updating after new records have been added with the field ContactNote empty?
Thanks
Ali
I am looking to simply insert a set value "To Be Contacted" into a field if its empty.
Can i use an append query to append a record with the above statement rather than drawing from another table?
INSERT INTO CustomerDetails ( ContactNote, ContactNote )
SELECT CustomerDetails.ContactNote, CustomerDetails.ContactNote
FROM CustomerDetails
WHERE (((CustomerDetails.ContactNote) Is Null));
THis statement is my starting point, but as you can see i need to alter the first INSERT INTO statement to refelct this
Alternatively does anyone else know of a method of updating after new records have been added with the field ContactNote empty?
Thanks
Ali