Using my query I can get by Month in a specific year my sales but I have disorder. Columns are ordered by:
1,10,11,12,2,3,4,5,6...
it should be: 1,2,3,4,5,5,6,...10,11,12
How can I change that?
Here's my code
SELECT
[Dim Tiempo].[Mes].[Mes].AllMembers
ON COLUMNS,
NONEMPTY (ORDER(
{ [Dim Cliente].[Company Name].CHILDREN},
[Dim Cliente].[Company Name].CURRENTMEMBER.MEMBER_NAME, ASC
))
ON ROWS
FROM [DWH Northwind]
WHERE [Dim Tiempo].[Año].&[1997]