I do not know, you can try this
Private Sub CommandButton1_Click()
With Sheets("Sheet1")
'Checkbox1
If CheckBox1.Value Then
.Range("E7").Value = TextBox1.Value
.Range("F7").Value = TextBox2.Value
.Range("E8").Value = TextBox3.Value
.Range("F8").Value = TextBox4.Value
.Range("E9").Value = TextBox5.Value
.Range("F9").Value = TextBox6.Value
.Range("E10").Value = TextBox7.Value
.Range("F10").Value = TextBox8.Value
.Range("E11").Value = TextBox9.Value
.Range("F11").Value = TextBox10.Value
End If
End With
'
'
and if you want to see in the userform yr values try to add in the userform this code
just try to play with it
Private Sub UserForm_Activate()
CheckBox1.Value = 1
CheckBox2.Value = 1
TextBox1.Value = [e7] 'it shows the value from cell e7 in textbox1
TextBox2.Value = [f7]
End Sub
'
'
Bookmarks