Link to home
Start Free TrialLog in
Avatar of Pete Grieves
Pete Grieves

asked on

Trying to make fields from multiple records in one table, into a single field in a query

I have one table that shows individual printing jobs and another table that shows the ink for each job. There can be as many as 10 different inks for a single job. The field that connects them is ITEM_CODE, which is in itself a unique number. My output needs to have a single row for each job number, which works fine with the format from the JOB table, but the REQ table has a record for each ink. I'm trying to figure out how to get each ink name into a field in one row of my output. Any help would be greatly appreciated!
Avatar of Pawan Kumar
Pawan Kumar
Flag of India image

can you please provide few rows from all the input tables and the expected output.
ASKER CERTIFIED SOLUTION
Avatar of Jim Dettman (EE MVE)
Jim Dettman (EE MVE)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Pete Grieves
Pete Grieves

ASKER

I was able to create a module that concatenated the results. Thank you!