Hi, I am trying to double click on a subform field called Address which would open a form frmEditWorkItem (based on a query qryWorkItem) then to be able to carry out edits for the current record.
This is my code line:
DoCmd.OpenForm "frmEditWorkItem", acFormAdd, acDialog, "ADDRESS = '" & Me.ADDRESS & "'"
This line does open the form but shows ALL records in the table instead of the current one that I have clicked in.
Could someone correct my code to enable me to do what I need.
Many thanks.