Search code examples
rdlc

RDLC - How can we get Multiple Headers on Every Page?


In Data Table, I've two Headers defined, I know how to show them on every page: Advanced => Properties => Keep With Group, etc.

But my question is, I just need to show my first Header on every page but not the second one. Pic Attached.

enter image description here

First Header is Green One, Second Header is Blue, want to repeat First but not second.. Please Help me out on this..


Solution

  • I got answer of it, finally, what I've done is, I've first deleted my second static row and then I insert a row inside group above, and in row visibility, I've added an expression:

         =IIf(RowNumber(nothing)>1,TRUE,FALSE)
    

    And It got me covered.