ssrs不显示重复行数据,只是列中的唯一值

发布于 2025-01-23 04:14:19 字数 1509 浏览 6 评论 0原文

我有一个报告,除了最后一列中的数据外,行数据可以具有相同的数据。只需将数据添加到表中即可:

第1列第2列第3列4
1ABC1111234345
1DEF2222435656
1DEF2222423233
1XYZ1234145423

我想显示这样的数据:

1列2列2列3 3第4列
1ABC1111234345
1DEF2222435656
423233
1XYZ1234145423

我尝试在组内添加一排,并按4列进行分组,但是此

列1列第2列第3列4 4
1ABC1111
23445
1DEF2222
435656
423233
1XYZ1234
145423

我希望与数据同一行上的第4列的第一个值,并且仅在下面的一个行上只有“附加”列4值。 我该怎么做?

I have a report where row data can have the same data, apart from the data in the last column. Just adding the data to a table results in this:

Column 1Column 2Column 3Column 4
1abc1111234345
1def2222435656
1def2222423233
1xyz1234145423

I want to show the data like this:

Column 1Column 2Column 3Column 4
1abc1111234345
1def2222435656
423233
1xyz1234145423

I've tried adding a row inside the group and grouping by Column 4, but this results in:

Column 1Column 2Column 3Column 4
1abc1111
234345
1def2222
435656
423233
1xyz1234
145423

I want the first values of column 4 on the same row as the data, and only the "additional" Column 4 values on a row by themselves below.
How would I go about this?

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

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

发布评论

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

评论(1

巷子口的你 2025-01-30 04:14:19

假设这是一个表,而不是矩阵,那么您只需要通过前三列创建一个行组。您还需要确保您的第四列在详细信息中。

这将为您带来理想的结果。

Assuming this is a table and not a matrix then you need to create a rowgroup to group by the first three columns only. You also need to make sure that your fourth column is in the details rowgroup.

This will give you the desired results.

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