I have a table where on field can contain more than one item of information.
Example:
Field 3 data
Record 1 00-00
Record 2 05-00
Record 3 51-00, 54-00, 57-00
When I am on my Form I want to see a sub-form that list the falues for each record.
The query should build a temp table to contain the individual values.
So, if my form is looking at the files in Record 3...a sub form would show
51-00
54-00
57-00
Instead of what is shown above. NOTE: there could be as many as 5 items in Field 3 seperated by commas.
Can I do this with a query? I know how to split out the pieces but how do I build the temp table with the split out pieces stored in the same field name in multiple records. Vertically other than horizontally.
Example:
Field 3 data
Record 1 00-00
Record 2 05-00
Record 3 51-00, 54-00, 57-00
When I am on my Form I want to see a sub-form that list the falues for each record.
The query should build a temp table to contain the individual values.
So, if my form is looking at the files in Record 3...a sub form would show
51-00
54-00
57-00
Instead of what is shown above. NOTE: there could be as many as 5 items in Field 3 seperated by commas.
Can I do this with a query? I know how to split out the pieces but how do I build the temp table with the split out pieces stored in the same field name in multiple records. Vertically other than horizontally.