Awesome! Thanks. Worked great. I put that extra "me." in it.
I just got it.
Me.frmEquipReturnSubF!ReturnedByID.Value = Forms!frmMainMenu.txtUserID
I'm learning
If its in a subform, you should use this:
NOTE .Value isn't needed as it's the default for controlsCode:Me.frmEquipReturnSubF.Form.ReturnedByID = Forms!frmMainMenu.txtUserID
See this link for more info on referencing subform controls: http://allenbrowne.com/casu-04.html
That worked perfectly. Thanks.