Hi Guys,

Maybe this is easy for you but not for me.
I have two userform:
- UserForm1 (for entry data): contain textbox1 (as entry text) and commandbutton1 (as Save button)
- Userform2 (as records only): contain label1
Below this code under Userform1
Private Sub TextBox1_Change()
UserForm2.Label1.Caption = UserForm1.TextBox1.Text
End Sub
If data entry on textbox1 (Userform1), then will be saved on label1 (Userform2) after commandbutton1 (as Save) pressed. Also the textbox1 will be reset/clear after commandbutton1 clicked.
I don't know how to create code to save the data on UserForm2.
If anyone of you Guys, can helps me, I am really appreciate.

Best Regards,
Iqbal