Loops in a report

sabzamsabzam Member Posts: 1,149
Hi Everybody,

Is it possible to loop a group footer in a report? For example the same footer is shown twice if a certain condition is satisfied?

Comments

  • NaviDevNaviDev Member Posts: 365
    Why not create another group footer. Then control it via codes.
    CurrReport.SHOWOUTPUT(YourCondition);
    
    Navision noob....
  • Revolution1210Revolution1210 Member Posts: 161
    Just insert another Group Footer section and control visibility using CurrReport.SHOWOUTPUT code in the OnPreSection() trigger.
    Ian

    www.NextEqualZero.com
    A technical eye on Dynamics NAV
  • sabzamsabzam Member Posts: 1,149
    But is it possible to run the same group footer twice?
  • hawwahawwa Member Posts: 106
    Cannot. Insert another Group Footer is the way to go.
  • Revolution1210Revolution1210 Member Posts: 161
    sabzam wrote:
    But is it possible to run the same group footer twice?

    It is possible, yes :)
    Ian

    www.NextEqualZero.com
    A technical eye on Dynamics NAV
  • NaviDevNaviDev Member Posts: 365
    sabzam wrote:
    But is it possible to run the same group footer twice?

    It depends in the hierarchy (indentation) of your data item. If it is your master data item then it would show you only the per grouping you have specified (only run once per group). And if it was under another data item and was indented on it then it would generate the per grouping of your data item and times the revolution of its master data item. Hope you got it . :D
    Navision noob....
Sign In or Register to comment.