I want to group by code# (t-shirt) and then group by sku (size), printing the quantity ordered for all skus within a code# all on the same line. Grouping by sku puts sizes in the proper order since the lowest sku number always corresponds to the smallest size. Is there something I can do without having to add a bunch of views of the same table? It would look like this:
T-Shirt S M L X 2X 3X
Code1 1 4 2
Code2 1 2 1 1 1 1
T-Shirt S M L X 2X 3X
Code1 1 4 2
Code2 1 2 1 1 1 1