SSRS删除重复的行条目

时间:2017-09-20 17:04:49

标签: sql reporting-services ssrs-2008 repeat

我需要查看所有笔记,但不要重复姓名和帐号。请参阅下面的示例。我正在使用SSRS报告构建器2008。

目前的情况如下:

Name|Account|Note
John|123456 |note1
John|123456 |note2
John|123456 |note3
John|654321 |note1
John|654321 |note2
John|654321 |note3

我希望它看起来像这样:

Name|Account|Note
John|123456 |note1
    |       |note2
    |       |note3
John|654321 |note1
    |       |note2
    |       |note3

2 个答案:

答案 0 :(得分:1)

在这里,您可以尝试在Tablix上添加Row组。

您需要在“帐户”上添加第一个“行”组,在“帐户”上添加第二个行组,以使其看起来像

Name|Account|Note
John|123456 |note1
    |       |note2
    |       |note3
John|654321 |note1
    |       |note2
    |       |note3

搜索您将获得结果的行组。

查看下面的图片

enter image description here

答案 1 :(得分:0)

如果为A列和B列设置hide duplicates属性为true,则它不应重复。