I have a table that logs in incoming samples. Each record represents 1 sample that has been logged in. It has around 10 fields that track different pieces of information regarding each sample. One of these fields tracks a bar code that is assigned to each sample as it comes in. The problem I have is that now each sample can have multiple bar codes. I want to be able to track and associate all bar codes with its corresponding sample record but I'm undecided on how to do it. I could just put them all into 1 field and separate them with a comma or something but that would get messy and it would require that I change the field type from numeric to text. Can anyone suggest a better way to design/handle this? Any advice is much appreciated.