I can group by C.ID, then by P.SKU after parsing and reformatting P.ID_etc. I want to group by C.Name, then by P.SKU. The problem is that I can't just add a group by for C.Name (can't create an initial link between C.ID and P.IDs to allow grouping by C.Name). How do I build a list of IDs so I can group by C.Name? Grouped by C.Name has to be in a Group Header. CR11
C.Name (group by 1st)
C.ID
P.SKU (group by 2nd)
P.ID_etc
O.SKU
O.Qty (sum)
C.Name (group by 1st)
C.ID
P.SKU (group by 2nd)
P.ID_etc
O.SKU
O.Qty (sum)