Hi, Really appreciate any help on this
I have a userform with a single select list box that opens when I click in a cell:
ShowModal: False
In ListBox1_Click() event what do I need to write, I thought
would do it, but excel hangs after I make a selection on the listbox, I can't continue until I click Esc, but nothing actually gets copied.
Really need help with this
Thanks
David
I have a userform with a single select list box that opens when I click in a cell:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim ws As Worksheet: Set ws = ThisWorkbook.Worksheets("Complaints")
Dim myCell As Range: Set myCell = ws.Range("F2:F1321")
Dim iSect As Range
Set iSect = Application.Intersect(Target, myCell)
If iSect Is Nothing Then Exit Sub
UserForm4.Show vbModeless
End Sub
ShowModal: False
In ListBox1_Click() event what do I need to write, I thought
Code:
Selection.InsertAfter Listbox1
Really need help with this
Thanks
David