Sub Test()
Dim i As Integer
i = Range("XFD10").End(xlToLeft).Column + 1
Cells(10, i) = TextBox1
Cells(10, i + 1) = UCase(TextBox2)
Cells(10, i + 2) = ComboBox1
Cells(10, i + 3) = TextBox3
Cells(10, i + 4) = TextBox4
Cells(10, i + 5) = TextBox5
TextBox1 = " "
TextBox2 = " "
ComboBox1 = " "
TextBox3 = " "
TextBox4 = " "
TextBox5 = " "
End Sub