在MDX中,计算给定商店的销售排名
我有一个 OLAP 多维数据集,其中包含我每个商店的销售计数。
使用MDX,如何输出给定商店的排名?
我梦想着像下面这样的东西(不起作用),如果 SomeShop 是第八个最畅销的商店,它将返回 8:
SELECT RANK( [Shop].CHILDREN, [Shop].[SomeShop]) from [Sales]
I have an OLAP cube containing the sales count for each of my shops.
Using MDX, how can I output the rank of a given shop?
I am dreaming about something like below (does not work), it would return 8 if SomeShop is the 8th most-selling shop:
SELECT RANK( [Shop].CHILDREN, [Shop].[SomeShop]) from [Sales]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看 msdn 上的示例,最后一个示例将在这里工作.
像这样的事情:
You should check out the examples on msdn, the last example will work here.
Something like this:
这是我找到的解决方案。
任何更好的解决方案将不胜感激。
Here is the solution I have found.
Any better solution would be greatly appreciated.