I need to open the Current Record in a linked table. I am banging my head against a wall. Here is what I used to open a current record in the same table:
Dim strCriteria As String
strCriteria = "[QME/AME Information]![lastname]=[Forms]![QME/AME Information]![lastname]"
DoCmd.OpenForm "commfrm", acNormal, , strCriteria
DoCmd.Maximize
The linked table is named comm, its form is commfrm
Dim strCriteria As String
strCriteria = "[QME/AME Information]![lastname]=[Forms]![QME/AME Information]![lastname]"
DoCmd.OpenForm "commfrm", acNormal, , strCriteria
DoCmd.Maximize
The linked table is named comm, its form is commfrm