That's code...
Put a text box on the form (call it MyTextBox or whatever)
Put a command button on the form.
Right click the button and choose Build event - Code builder
Then paste the code where the cursor blinks
Dim itm
For each itm in Me.ListBoxName.ItemsSelected
Me.MyTextBox = Me.MyTextBox & Me.ListBoxName.ItemData(itm) & ", "
Next
Open the form, select a few items and click the button.
The text box will be populated with your selection, items separated by comma.
It's somehow advanced for your level of Access knowledge.
But it's simple for an intermediate user.
Time to do some digging in the Help files...
Good luck
![[pipe] [pipe] [pipe]](/data/assets/smilies/pipe.gif)
Daniel Vlas
Systems Consultant