Hi Ingo,
The underlying source is actually sorted by key.
Here's the underlying query as you can see that there is an order by.
SELECT
distinct DimTime.EnglishMonthName,
DimTime.MonthNumberOfYear
FROM
DimTime
ORDER BY
2
It's the Design Studio datasource object that re-sorts it alphabetically which is the problem
Thanks
David