D
Derek
You want to use the Initialize event for the userform.
The code would be something like this:
Private Sub UserForm_Initialize()
TextBox1.Text = Worksheets("Sheet1").Range("A1").Value
End Sub
You will need to use the actual names for your textbox and
worksheet.
The code would be something like this:
Private Sub UserForm_Initialize()
TextBox1.Text = Worksheets("Sheet1").Range("A1").Value
End Sub
You will need to use the actual names for your textbox and
worksheet.