Hello, I'm in hell because of this stupped thing. I want copy value from textboxes (UserForm) in to a Sheet. Every value from every textbox must be copyed to cell in that sheet on the next empty cell. For example value from first textbox must be copyed into a sheet in a next empty cell on colomn A and so on. I use this code:
Private Sub copy_Click()
Range("A1").End(xlDown).Offset(1, 0).Value = data.Value
Range("B1").End(xlDown).Offset(1, 0).Value = nomer.Value
........
End Sub
It's ok for first time. Second time was copyed only in A colomn.
Please help me!
Private Sub copy_Click()
Range("A1").End(xlDown).Offset(1, 0).Value = data.Value
Range("B1").End(xlDown).Offset(1, 0).Value = nomer.Value
........
End Sub
It's ok for first time. Second time was copyed only in A colomn.
Please help me!