I'm trying to manage our inventory on access but I'm very new to it. My raw data lists out items, quantity requested, and the crews that requested it. I want to see the sum of the quantity requested for an item and the associated crews but I want all the crews to be in one cell. I've tried searching up the question and people suggest using the concatenate function but I don't know how to change it for my situation as I want the totals as well (and I don't know anything about SQL or VBA). Any help would be appreciated! This is how my data looks
||ID|| ||ITEM|| ||Qty requested|| ||Crew||
||1|| ||bolt|| ||2|| ||1234||
||1|| ||bolt|| ||30|| ||4567||
||2|| ||saw|| ||4|| ||7890||
||3|| ||screw|| ||10|| ||1234||
||4|| ||glove|| ||1|| ||1111||
||4|| ||glove|| ||5|| ||222||
but I want it to look like this
||ID|| ||ITEM|| ||Qty requested|| ||Crew||
||1|| ||bolt|| ||32|| ||1234,4567||
||2|| ||saw|| ||4|| ||7890||
||3|| ||screw|| ||10|| ||1234||
||4|| ||glove|| ||6|| ||1111,222||
I've tried running a query but the closest I can get is a table with the items and sum of the quantities but not the crews. Thank you!