Put a button on the form you are leaving which takes you to the new form. and put this code in it.<br>
------------------------------<br>
Private Sub Command4_Click()<br>
On Error GoTo Err_Command4_Click<br>
<br>
Dim stDocName As String<br>
Dim stLinkCriteria As String<br>
<br>
stDocName = "YourFormHere" '< Name of form to open<br>
<br>
stLinkCriteria = "[ID]=" & "'" & Me![ID] & "'" <br>
DoCmd.OpenForm stDocName, , , stLinkCriteria<br>
Forms!YourFormHere.Form![ID] = Me!BusinessID '<br>
<br>
Exit_Command4_Click:<br>
Exit Sub<br>
Err_Command4_Click:<br>
MsgBox Err.Description<br>
Resume Exit_Command4_Click<br>
End Sub<br>
--------------------------<br>
If you have a field on your second from which matches the first form use the "stLinkCriteria" line otherwise leave it out.<br>
The line Forms!YourFormHere where "YourFormHere" is the form you are opening from the other form.<br>
<br>
<p> DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br>