Dim ListItem As Variant
HiddenBox = "" 'hiddentextbox is a hidden control on your form
For Each ListItem In lstAltArea.ItemsSelected
HiddenBox = HiddenBox & lstAltArea.ItemData(ListItem) & ", "
Next
If Right(HiddenBox, 2) = "," Then HiddenBox = Left(HiddenBox, Len(HiddenBox) - 2)
Me.cboJobs.Requery