I have two dimension field say [Custom Date] which have data like 'September 2009' and [Custom Date With Formart] which have data like 'Sep-09'.
I am applying order function to arrange it as shown below.
Order(BottomCount(
{[CUBE].[Custom Date].[Custom Date].ALLMEMBERS}, 12),
[CUBE].[Custom Date].[Custom Date].[], DESC)
ON COLUMNS,
It arranges my dates as 'September 2009','October 2009'....,'January 2010','February 2010'.
Order(
{[CUBE].[Custom Date With Formart].[Custom Date With Formart].ALLMEMBERS},
[CUBE].[Custom Date].[Custom Date].[], DESC)
ON COLUMNS,
Output for above is like 'Jan-10','Feb-10',....,'Sep-09','Oct-09'.
What i want is to display [Custom Date With Formart] on axis and sort it using [Custom Date].
Let me know your comments.
Thanks to all of you. I resolved my issue by following this link.