如何在 sql server reporting 2008 R2 中计算小计并显示标题

发布于 2024-12-06 06:07:49 字数 256 浏览 0 评论 0原文

我有如下图所示的数据

在此处输入图像描述

我想像这样显示我的数据 在此处输入图像描述

所以我想知道如何显示组 01 02 03,然后在 sql server 中计算它们各自的总数报告 2008 R2。

有没有内置的技术可以做到这一点?

I have data like picture below

enter image description here

I want to display my data like this
enter image description here

So I want to know how can i show group 01 02 03 and then calculate their respective totals in sql server reporting 2008 R2.

Is there any built-in technique to do this ?

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

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

发布评论

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

评论(1

一百个冬季 2024-12-13 06:07:49

使用下面的表达式创建一个组

=Mid(Fields!Code.Value,1,2)

Mid 类似于 sql Substring 函数

Create a group with the expression below

=Mid(Fields!Code.Value,1,2)

Mid is similar to sql Substring function

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