Nav Reports

I have one report that serves two user requirements. I need to hide some sections of the report (eg a footer) but depending on the option the user selects from a request form. How can i do this? Please assist

Thanks

On the “OnPreSection” trigger of your section you have to use the CurrReport.SHOWOUTPUT(bool) function. So, if you want to hide the section

ShowSectionOrNot := false;

CurrReport.SHOWOUTPUT(ShowSectionOrNot);

would do the trick.