Hello ,
I would copy specific columns from listbox to bottom in sheet without selected from listbox.
any idea to fix this code please?
thanks
I would copy specific columns from listbox to bottom in sheet without selected from listbox.
any idea to fix this code please?
VBA Code:
Dim lastrow As Long
With Sheet2
.Range("A" & lastrow + 1).Value = Me.ListBox1.Column(0)
.Range("B" & lastrow + 1).Value = Me.ListBox1.Column(1)
.Range("C" & lastrow + 1).Value = Me.ListBox1.Column(3)
End With