How to display footer at last without a prop?

chandrurecchandrurec Member Posts: 560
Hi all,

There is a property called PrintOneverypage in footer section in report designer.If we set this property to true , then the footer section gets displayed on every page but i should get this footer gets displayed only for every new record and not for every page of the same record.

If I dont set the Printonevery page property to true , then If i select a date range , then the footer is getting displayed only for the last record.

Is there any property by which we can set so the footer gets displayed at last recordwise and not at last.

Thanks in advance.

Regards,
Chandru.

Comments

  • AndwianAndwian Member Posts: 627
    Add the code in the Footer OnPreSection:
    IF bolNewRecord THEN SHOWOUTPUT;
    
    Regards,
    Andwian
Sign In or Register to comment.