• I think what you are trying to do is getting [Internet Sales Amount] and [Internet Order Count] breaking down by all [Fiscal Year] and [Customer].[Country], so

    Try this:

    SELECT {[Measures].[Internet Sales Amount], [Measures].[Internet Order Count]} on axis 0,

    {[Date].[Fiscal Year].members} * {[Customer].[Country].members} on axis 1

    FROM [Adventure Works]

    If this is not what you are trying to do let me know.