Private Sub CommandButton2_Click()
Dim LastRow As Long
With ThisWorkbook.Sheets("Output")
LastRow = .Cells(.Rows.Count, "H").End(xlUp).Row
With .Range("H" & LastRow)
.Value2 = TextBox1.Value
End With
End With
End Sub
Private Sub CommandButton2_Click()
Dim LastRow As Long
With ThisWorkbook.Sheets("Output")
LastRow = Cells(.Rows.Count, "H").End(xlUp).Offset(1, 0).Row
Range("H" & LastRow).Value = TextBox1.Value
End With
End Sub