This is racking my brain and I can't seem to find the answer from earlier posts.
I created a "find unmatched" query, built to show me that a status (Avail_ID) has changed from my data source.
I then want MS Access to only update the records and the specific unmatched cell on my DB table.
The SQL for the find unmatched query is:
SELECT qryvsbwithkey.Key, qryvsbwithkey.[Avail ID]
FROM qryvsbwithkey INNER JOIN BAWP ON qryvsbwithkey.[Key] = BAWP.[Key]
WHERE (((qryvsbwithkey.[Avail ID])<>[BAWP]![Avail_ID]));
Is there a way to now change this query into an append query that will change [BAWP]![Avail_ID] to the value in qryvsbwithkey.[Avail ID], for only the results of the above query?