Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. WITH SET [Selected Records] AS
  2. SubSet([DimA].[Record].[Record].Members,
  3. ParamRef('start') - 1,
  4. ParamRef('end') - ParamRef('start') + 1
  5. )
  6. SELECT { [Measures].[Count] }
  7. ON COLUMNS,
  8. [Selected Records]
  9. ON ROWS
  10. FROM [MyCube]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement