How to apply a conditional page-feed in a RDLC Report?

RoelofRoelof Member Posts: 377
I'm currently creating a RDLC report in NAV2015. I need to do a page-feed based on a condition. If the condition is true then do a page feed. Is there a way to do that in RDLC?
Roelof de Jonghttp://www.wye.com

Comments

  • RoelofRoelof Member Posts: 377
    Sorry, I figured it out. Let me explain what I did:
    If your are going to the RowGroups of the RDLC report and go the properties you see the following options:
    PageBreak
    BreakLocation Options: None, Start, End, StartAndEnd, Between,
    Disabled You can define a condition here, like:
    iif(Fields!Summarize.Value,True,False)

    So, in my case it only gives a PageBreak when the report is not summarizing.
    Roelof de Jonghttp://www.wye.com
Sign In or Register to comment.