How can you make a query in MS Access, so that the fields are grouped into columns?
It is easier to explain through an example.
Table:
Br
Try like this
TRANSFORM Sum(tabl1.[Quantity]) AS SumOfQuantity SELECT tabl1.[brand], Sum( tabl1.[Quantity]) AS [Total Of Quantity] FROM tabl1 GROUP BY tabl1.[brand] PIVOT tabl1.[Date];