
Private Sub Textbox1_Change()
Sheets("Foglio2").Select
Cells(16, 2).Value = Val(TextBox1)
End Sub |
Private Sub Textbox1_Change()
Sheets("Foglio2").Select
LR = Cells(Rows.Count, 2).End(xlUp).Row + 1
Cells(LR, 2).Value = Val(TextBox1)
End Sub |
Private Sub Textbox1_Change()
Application.EnableEvents = False
Sheets("Foglio2").Select
LR = Cells(Rows.Count, 2).End(xlUp).Row + 1
Cells(LR, 2).Value = Val(TextBox1)
Application.EnableEvents = True
End Sub |
