In Excel, I have UserForm1 containing ListBox1 which looks like:
I figured out how to display ListBox1 when I select any cell within the range F7:F200:
But I haven't been able to figure out how to tell ListBox1 to place the selected value in the active cell.
TIA for any and all responses!

I figured out how to display ListBox1 when I select any cell within the range F7:F200:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Not Intersect(Target, Range("F7:F200")) Is Nothing Then
UserForm1.Show
End If
End Sub
TIA for any and all responses!