I’d like to add TextBox34.Value= Sheet1 AG:37 to this<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
<o></o>
I haven't tried everything yet<o></o>
<o></o>
Rich (BB code):
Private Sub TextBox2_AfterUpdate()<o:p></o:p>
Dim iRow As Long<o:p></o:p>
Dim WS As Worksheet<o:p></o:p>
Set WS = Worksheets("Sheet2")<o:p></o:p>
iRow = WS.Cells(Rows.Count, 1) _<o:p></o:p>
.End(xlUp).Offset(0, 0).Row<o:p></o:p>
<o:p></o:p>
WS.Cells(iRow, 2).Value = Me.TextBox2.Value<o:p></o:p>
WS.Cells(iRow, 3).Value = Me.TextBox3.Value<o:p></o:p>
TextBox4.Value = WS.Cells(iRow, 4).Value<o:p></o:p>
<o:p></o:p>
End Sub<o:p></o:p>
I haven't tried everything yet<o></o>