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?
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.
Comments
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.