Hi Guys!
I'm currently working on a little project. It's a VBA UserForm.
The user enter his name, choose between 2 option (for Age +18 or -18) and it send information
NAME
For the age (OptionButton)
And a Submit button who call the NAMEValue & Age Value.
My issue is... When the next user enter his name, it print over on the A1, B1 & C1. I'd like, when he/she click on submit, that the excel go on A2-B2-C2 then A3-B3-C3 etc.
Then, I will be able to have a list of name and age.
Thank's in advance for help
I'm currently working on a little project. It's a VBA UserForm.
The user enter his name, choose between 2 option (for Age +18 or -18) and it send information
NAME
Code:
Private Sub NAMEValue()
Sheets("TRACKER").Range("A1") = NAME.Value
End Sub
For the age (OptionButton)
Code:
Private Sub AGEValue()
If OB1.Value = True Then
Sheets("TRACKER").Range("B1").Value = "1"
Sheets("TRACKER").Range("C1").Value = "0"
ElseIf OB2.Value = True Then
Sheets("TRACKER").Range("B1").Value = "0"
Sheets("TRACKER").Range("C1").Value = "1"
And a Submit button who call the NAMEValue & Age Value.
My issue is... When the next user enter his name, it print over on the A1, B1 & C1. I'd like, when he/she click on submit, that the excel go on A2-B2-C2 then A3-B3-C3 etc.
Then, I will be able to have a list of name and age.
Thank's in advance for help