Hello everyone.
I am new to UserForms and code, but getting a little handle on it. I am stuck right now with (probably) a simple problem though, as follows; I want the UserForm (UF) to show the data that is in the wrksht if there is data in the wrksht. If not, then the user can use the UF to input the data upon "save and exit" command button. In this way, the user will be able to see on the UF all the data he has entered.
I have tried with this code for one textbox and one cell (don't laugh); Any assistance would be greatly appreciated. Thanks, JasonRay

Private Sub ExitFootingInputUserForm_Click()
Unload a001UF_FootingInput
Dim ws As Worksheet
Set ws = Worksheets("Takeoff001")
If ws.Range("E19").Value > 0 Then
TextBox01.Value = ws.Range("E19").Value
Else
ws.Range("E19") = TextBox01.Value

End If

Unload a001UF_FootingInput

End Sub