Hi there,
It depends on what kind of listbox you have created. If you have created
one from the Controls Toolbox menu (an ActiveX control), you could use
something like this ...
Sub PrintListBoxSheets()
Dim i As Long
With Sheet1.ListBox1
For i = 0 To .ListCount - 1
If .Selected(i) = True Then
Debug.Print .List(i)
End If
Next i
End With
End Sub
HTH

Signature
Regards,
Zack Barresse, aka firefytr
>I have 2 Excel VBA questions:
> 1) Is it possible to choose multiple items in a List Box and if so, 2) how
[quoted text clipped - 10 lines]
>
> Christiaan