I have several forms that the Default View is set to Split Form. When a record is selected in the split form it fills changes the field filled in the main form. I need to be able to stay on the same person as I move through the several forms. Is there a way to keep the record selected in the first form in all the other forms? I am trying to keep the current record Id and pass it on to the other forms but not able to get the record selected. I have a total of 8 forms which are all opened at the same time with a button.

Private Sub Form_Current()
Me!Text1 = CurrentFormRecord(Me) //I am using this to see if the correct record is being kept

Tempid = Me!Text1

Forms![Form2].Form.Tag = Tempid //I am attempting to assign the selected record on this first form to the second form


Function CurrentFormRecord(frm As Form) As Long
CurrentFormRecord = frm.CurrentRecord
End Function