在 Microsoft 报告中查找排名

发布于 2024-10-11 12:47:42 字数 318 浏览 2 评论 0原文

有什么方法可以在 Microsoft Reports 中找到一组值的排名吗?

例如,为了生成如下所示的表格,我应该在排名列中输入什么函数/公式?

+------+-----+
|Value | Rank|
+------+-----+
| 12   | 3   |
| 30   | 5   |
|  5   | 1   |
| 10   | 2   |
| 24   | 4   |
+------+-----+

更新
值列中的值是根据报告端的计算生成的,因此我无法使用查询找到排名。

Is there any way I can find the rank of a set of values in Microsoft Reports?

For instance, in order to produce a table like the one below, what function/formula do I enter in the Rank column?

+------+-----+
|Value | Rank|
+------+-----+
| 12   | 3   |
| 30   | 5   |
|  5   | 1   |
| 10   | 2   |
| 24   | 4   |
+------+-----+

Update
Values in the value column are produced from calculations on the report-side so I cannot find the rank using a query.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

熊抱啵儿 2024-10-18 12:47:42

您将获得的最接近的是 RowNumber 函数,但这取决于基础排序顺序。

我强烈建议将值列逻辑服务器端移动并使用 SQL 创建以获取排名值。

The closest you are going to get is the RowNumber function, but that depends on the underlying sort order.

I thoroughly recommend moving the value column logic server side and creating using SQL to get a rank value there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文