CrystalLion
Programmer
I have a report with several sections. Evertime I run the report, when there Grants but no Gifts, it creates a proper page 1, a proper page 2, and then creates a page 3 with no information on it which contains my "this page intentionally left blank" conditional statement.
I want to display a message that says "this page intentially left blank" if the page# is even. My report has the following sections
PHa - first header page
Phb - suppressed
Phc - header page for pages 2-??)
Phd - "this page intentionally left blank"
shared booleanVar LastPage;
not (LastPage and remainder (pagenumber, 2)=0)
Gh1 - suppressed
contains @resetvars"
shared booleanVar LastPage := False
Details - suppressed
Gf1a - Period Activity
Gf1b - Period balance (hard Page break)
Gf1c - gifts (conditional suppress if no gifts)
Gf1d - grants (conditional suppress if no grants) and
(conditional new page before
shared booleanVar NoGrants; not (NoGrants)
Gf1e - "no gifts and no grants" (conditional suppress if
there are either gifts or grants"
Gf1f - Gifts or Grants out of balance with GL error page
(conditional suppress if nothing out of balance)
Gf1g - @SetLastPage" @shared BooleanVar LastPage := True
Report Footer - suppressed
Page Footer - never suppressed
Any insight would be helpful. I am under a deadline that has passed and am at a dead end.
Thanks
L
I want to display a message that says "this page intentially left blank" if the page# is even. My report has the following sections
PHa - first header page
Phb - suppressed
Phc - header page for pages 2-??)
Phd - "this page intentionally left blank"
shared booleanVar LastPage;
not (LastPage and remainder (pagenumber, 2)=0)
Gh1 - suppressed
contains @resetvars"
shared booleanVar LastPage := False
Details - suppressed
Gf1a - Period Activity
Gf1b - Period balance (hard Page break)
Gf1c - gifts (conditional suppress if no gifts)
Gf1d - grants (conditional suppress if no grants) and
(conditional new page before
shared booleanVar NoGrants; not (NoGrants)
Gf1e - "no gifts and no grants" (conditional suppress if
there are either gifts or grants"
Gf1f - Gifts or Grants out of balance with GL error page
(conditional suppress if nothing out of balance)
Gf1g - @SetLastPage" @shared BooleanVar LastPage := True
Report Footer - suppressed
Page Footer - never suppressed
Any insight would be helpful. I am under a deadline that has passed and am at a dead end.
Thanks
L