jamescooper
Well-known Member
- Joined
- Sep 8, 2014
- Messages
- 840
Code:
Private Sub ToggleButton2_Click()
Me.TextBox1.Copy
Sheets("Data Sheet").Range("L" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
Struggling to achieve a simple copy to the next available row in column L from a textbox in a userform.
It is failing on line 2.
Any ideas please?
Thanks.