I have a user form with a text box for the user to enter notes. How do I make it save those notes entered as each time the user form is activated the text box is empty
Here is one way using a workbook name. Replace "TextBox1" in the code with the name of your textbox control...
Code:
Private Sub UserForm_Initialize()
On Error Resume Next
TextBox1.Text = [SaveTextBoxText]
End Sub
Private Sub UserForm_Terminate()
Names.Add "SaveTextBoxText", TextBox1.Text
ThisWorkbook.Save
End Sub