I am having an issue with a button on a 2013 Access form.
High level: I am making some regulatory forms, 1 is a service Request, the other is a complaint request. A
For future reference:
Put Option Explicit at the top of each module.
It enforces variable declaration and reports undeclared or misspelled variables/constants at compile time.
To have this automatically in new modules, set the Require Variable Declaration option in the VBA Editor.
And read: Debugging VBA Code
Forms![Complaint Request Form].Form.Phone = Me.txtPhone
should have been
Forms![Complaint Request Form].Form.Phone = Me.txtPhoneNumber
Sorry for wasting your time.