Which cell contains the value? You can simply use the UserForm_Initialize event to populate a TextBox

Private Sub UserForm_Initialize()
Me.TextBox1.Value = Sheet1.Cells(1, 1).Value
End Sub