Created
April 9, 2015 13:30
-
-
Save buggtb/3fa015d28711b7a8be77 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 [~COLUMNS] AS | |
| {[Time].[Time].[1997]} | |
| SET [~ROWS] AS | |
| Order({[Employee].[Management Role].[Management Role].Members}, [Measures].[Avg Salary], BDESC) | |
| SELECT | |
| NON EMPTY CrossJoin([~COLUMNS], {[Measures].[Avg Salary]}) ON COLUMNS, | |
| NON EMPTY [~ROWS] ON ROWS | |
| FROM [HR] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment