Code:
[FONT=Times New Roman][SIZE=3]Private Sub CommandButton1_Click()[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]With Sheets("Sheet4")[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A1").Value = TextBox1.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A7").Value = TextBox2.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A15").Value = TextBox3.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A21").Value = TextBox4.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A36").Value = TextBox5.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A40").Value = TextBox6.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3].Range("A41").Value = TextBox7.Text[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]End With[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]Unload Me[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]UserForm4.Show[/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3]End Sub[/SIZE][/FONT]
The code above pastes data from a UserForm to Sheet4 when I click the command button. In the last line of this block of code, after I call UserForm4 again, I would like to have the data I pasted into Sheet4 to get pasted back into the TextBoxes in UserForm4. Is this possible? If so can you show me how?