I'm new to Access and forms. Have worked extensively in Oracle.
Have a navigation subform with Default view = Continuos Forms and using a Recordsource method to populate the values.
The Table has created_by and modified_by columns. I'm capturing the application user ID in a global variable and whenever a record is updated, the same should be captured in modified_by column.
the query I've tried is as
select f1,f2,f3,f4, 'uid' as Modified_By, now as Modified_Date FROM <table> where <conditions>;
say this query returns 3 rows. All the bound textboxes show the correct values
but I'm able to capture and update the required details only for the first record and not for 2nd and 3rd.
any suggestions?