I have several UserForms that I am using to input data into specific worksheet cells or ranges using the following:
Private Sub ContactTitle_Change()
Range("Contact_Title") = ContactTitle.Value
End Sub
I have Next and Back buttons on each UserForm. Everything is working great except when I use the back button it Unloads the current Userform and Loads the previous form and all the fields are blank.
When I press the back and the previous form appears I would like the fields to to display the information that I have already entered into the form and stored in my worksheet.
Private Sub ContactTitle_Change()
Range("Contact_Title") = ContactTitle.Value
End Sub
I have Next and Back buttons on each UserForm. Everything is working great except when I use the back button it Unloads the current Userform and Loads the previous form and all the fields are blank.
When I press the back and the previous form appears I would like the fields to to display the information that I have already entered into the form and stored in my worksheet.