Hello there: I am doing a report, in this report I have defined 5 labels in it, but really the fifth body will be somtimes showed. This report look for the sold items in one order and if I find specific item I’ll show the fifth body or not. Somebody knows I can refer to body programatically. Any help I’ll appreciate a lot Thanks in advance
In the OnPreSection trigger of your section (Body): CurrReport.SHOWOUTPUT(FALSE); will hide your section CurrReport.SHOWOUTPUT(TRUE); will show your section (default) So you can put something like: CurrReport.SHOWOUTPUT();
It works !!! Thank you very much.