Here we go I shall try to explain it!!
I have a userform with several textboxes and comboboxes.
Textbox1 is titled �Name�.
New users enter their names in textbox1 and then fill in all the other
textboxes. The data is saved in sheets 2 in the next empty row, with the
names in column �A�.
I have run out of columns in sheet2 so I have added a new sheet (sheet5)
with the same headings as sheet2.
How do I get the name from textbox1 to load in sheet5 in the next empty row.
The same as sheet2?

Signature
kk
> I have no idea what your real purpose is, but maybe this does what you want:
>
[quoted text clipped - 142 lines]
> > >
> > > Dave Peterson
Dave Peterson - 18 Mar 2008 00:17 GMT
Why did your code use textbox3 and textbox4?
Change them to what you want.
> Set LastRow = Sheet5.Range("a100").End(xlUp)
> LastRow.Offset(1, 0).Value = TextBox3.Text
> LastRow.Offset(1, 1).Value = TextBox4.Text
> Here we go I shall try to explain it!!
> I have a userform with several textboxes and comboboxes.
[quoted text clipped - 159 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
kk - 18 Mar 2008 00:26 GMT
I have manage to sort it now.
On my earlier post, I had the following code:
> > Set LastRow = Sheet2.Range("a100").End(xlUp)
> > LastRow.Offset(1, 0).Value = TextBox1.Text
[quoted text clipped - 20 lines]
> > ComboBox3.Text = ""
> > ComboBox4.Text = ""
I had inserted
TextBox1.Text = ""
In the wrong place. It should have gone after the message box. In effect I
was clearing textbox1 before the data was entered in sheet5.
It all works fine now.

Signature
kk
> Here we go I shall try to explain it!!
> I have a userform with several textboxes and comboboxes.
[quoted text clipped - 153 lines]
> > > >
> > > > Dave Peterson