> hi,
>
[quoted text clipped - 10 lines]
> thanks in dvance,
> geebee
Hello Geebee,
When using a Forms type ListBox, you can only select an item either by
clicking, or by changing the value of the Linked Cell. This examples
assumes the Linked Cell is A1, and the list box is named "List Box 1".
It selects the third item in the list.
With ActiveSheet
.Range("A1").Value = 3
With .ListBoxes("List Box 1")
X = .List(.ListIndex)
End With
End With
Sincerely,
Leith Ross