Last active
August 29, 2015 14:11
-
-
Save osya/10b8c9aa7f43e9c59ecb to your computer and use it in GitHub Desktop.
MDX-запрос для проверки значений показателей в кубе по территоиям и по годам #MDX #BI #MIS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH | |
MEMBER [Measures].[СТАТ.ДЕМ.01] AS ([Measures].[VALUE], [Account].[Code].&[СТАТ.ДЕМ.01]) | |
SELECT [Measures].[СТАТ.ДЕМ.01] on 0, | |
Non empty ( | |
order( | |
[Territory].[Territories].[Федеральные округа]*[Calendar].[Year].[Year] | |
,[Calendar].[Year]. MemberValue, BDESC | |
) | |
) on 1 | |
FROM frgs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment