I have a form with a button that runs a macro that opens another form. Both are connected to the same table. I want the second form to display the same record as the first form.
I don't want to filter it to only the same record; I know how to do that. (I use the Where Condition box.) When the new form opens, I want to be able to navigate to the other records.
I tried this:
GoToRecord
Record: Go To
Offset: Forms![FirstForm]![ID]
That gives an error, probably because the ID number isn't what I'm looking for; it's the record number.
So I tried this:
GoToRecord
Record: Go To
Offset: Forms![FirstForm].CurrentRecord
But that doesn't work either.
I could probably do it in VBA, but I'd feel silly; I'm sure I'm just one keyword away from making this work.