Hi,
I would like to clear not delete rows over a vba user form. How can I tranlate the code below into a code, that I can clear the selected entriy from the list box? Is this even possible without writing a funciton
Best![]()
Private Sub Cmd_02_Click() Range("A15:GJ15").Clear End Sub
Tried :
![]()
With LB_00 Dim i As Integer i = .List(.ListIndex, 0) End With Range("Ai:GJi").Clear End Sub
Bookmarks