I have this query in access, but I can not sort the Format ([DateCob], "mmmm") by the order of the months, they are sorted by alphabetical order (April, August, December, etc.) and I want it by order of months (January, February, etc.) This is my query
TRANSFORM Sum(Compras.Importe) AS SumaDeImporte
SELECT Compras.PG
FROM Compras
WHERE (((Compras.BU)='EPMV'))
GROUP BY Compras.PG
PIVOT Format([FechaCobro],"mmmm");
Thanks for your help