Created
April 19, 2016 13:20
-
-
Save buggtb/f95fa5203c8afe99511d92986c97b169 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| SET [~ROWS_combined_combined.combined] AS | |
| Hierarchize({{[combined].[loc].Members}, {[combined].[pct].Members}}) | |
| SET [~ROWS_othercombined_othercombined.otherhierarchy] AS | |
| {[othercombined.otherhierarchy].[ref2].Members} | |
| MEMBER [Measures].[test] as '(([Measures].[count_consultations], [combined].[All combineds], [ccg.H0].[All ccg.H0s]))/(([Measures].[count_consultations], [combined].[All combineds], [othercombined.otherhierarchy].[All othercombined.otherhierarchys]))' | |
| MEMBER [Measures].[other1] as '(([Measures].[count_consultations], [combined].[All combineds], [ccg.H0].[All ccg.H0s]))' | |
| MEMBER [Measures].[other] as '(([Measures].[count_consultations], [combined].[All combineds], [othercombined.otherhierarchy].[All othercombined.otherhierarchys]))' | |
| SELECT | |
| NON EMPTY {[Measures].[count_consultations],[Measures].[test], [Measures].[other1], [Measures].[other]} ON COLUMNS, | |
| NON EMPTY NonEmptyCrossJoin([~ROWS_combined_combined.combined], [~ROWS_othercombined_othercombined.otherhierarchy]) ON ROWS | |
| FROM [MEC] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment