I am attempting to take the data from my input screen:
And transfer it to an excel worksheet to store the data. This is where I would like the data to go:
I am currently using this code:
ActiveCell=TextBox1.Value
ActiveCell.Offset(0,1)=TextBox2.Value
But I need to keep doing this for every textbox which seems very inefficient.
Is there a more efficient way to transfer this data from the userform to the sheet?
Any help would be greatly appreciated. Thanks!