Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: how to get order month name in MDx Query

    Here is the MDX query to reorder your Month

    WITH

    Member [OrderMonth] as

    CASE [Month].Currentmember.Member_Caption

    When 'Jan' THEN 1

    when 'Feb' THEN 2

    WHEN 'Mar' THEN 3

    WHEN 'Apr' THEN 4

    WHEN 'May' THEN 5

    WHEN...

Viewing post 1 (of 1 total)