I'm working on an intranet form connected to an Access database. I want to insert values into blank fields of existing records.On my first try all I get is a new record with the ID number I submitted. How do you make the form modify the values for existing records with that ID number?
UPDATE_
My Access file is connected as a file in the current web and verified through the database properties. The SQL query I have kluged together is...
UPDATE DISTINCTROW
PEIdir
SET proof=': :proof::', logo='::logo::', payment=': :payment::'
WHERE 'Member Class'='::Member Class::'
Thanks in advance.
[This message has been edited by maduko (edited 11-19-2001).]