Good morning all,
I have two userforms - Userform1 & Userform2
I open Userform1 and enter data. I then unlaod Userform1 and open Userform2 to enter more data - then my command to send the data to the excel sheet but only the data from Userform2 carries across to the spreadsheet?
Why am I missing Userform1's data as I unload both sheets before transferring the data?
Unload UserForm1
'(text input)
Userform2.Show
'(text input)
Unload UserForm2
Range("K7").Select
Selection.FormulaR1C1 = TextBox16.Text (Userform1)
Range("P7").Select
Selection.FormulaR1C1 = TextBox5.Text (Userform2)
I have two userforms - Userform1 & Userform2
I open Userform1 and enter data. I then unlaod Userform1 and open Userform2 to enter more data - then my command to send the data to the excel sheet but only the data from Userform2 carries across to the spreadsheet?
Why am I missing Userform1's data as I unload both sheets before transferring the data?
Unload UserForm1
'(text input)
Userform2.Show
'(text input)
Unload UserForm2
Range("K7").Select
Selection.FormulaR1C1 = TextBox16.Text (Userform1)
Range("P7").Select
Selection.FormulaR1C1 = TextBox5.Text (Userform2)