murray83
Games Collector
- Local time
- Today, 15:01
- Joined
- Mar 31, 2017
- Messages
- 826
evening folks
just quick question this code below works fine adding records to the table
my question is this, is there a simple sql statment to update a record, all updating record i have seen run to quite a few lines and have tried
this just added a new record
i want the next person in the process to fill out text box on form and then press update and then have it update the newest record
ta all
just quick question this code below works fine adding records to the table
Code:
DoCmd.RunSQL ("INSERT INTO main ( FromBay, ToBay, [Requested By] )VALUES (fromBay.value, toBay.value, Authorised.value )")
my question is this, is there a simple sql statment to update a record, all updating record i have seen run to quite a few lines and have tried
Code:
UPDATE main
this just added a new record
i want the next person in the process to fill out text box on form and then press update and then have it update the newest record
ta all