Search code examples
sqlreporting-servicesssrs-2008repeat

SSRS remove duplicate row entries


I need to see all the notes but not repeat the name and account number. Please see the example below. I'm using SSRS report builder 2008.

This is how it currently looks:

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

I'd like it to look like this:

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


Solution

  • Here you cna try by adding Row group on your tablix.

    You need to add first Row group on Name and second row group on Account so it will be look like

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

    search for row group you will get result.

    check below image

    enter image description here