I have a form that contains an unbound list box that shows data from a inventory table. I have code that lets you select multiple items from that list box and stores the values in the main table separated by a semicolon. The problems is that when I want a report on just one item, the report shows the correct data but the report header shows the whole list. i.e. I select socks, shoes and shirt from the list box. Those values are stored in the table. I have a report that I enter soc* when prompted for the item I want. On the report header, it shows Item: shoes,shirt,socks. I guess the values are seen as one big String. How would I parse just to get socks to show up on the header? Tks!!