Have a two column report with a record counter:
whileprintingrecords; numbervar cnt := cnt +1
suppressed in the details
section. In the report footer are two formulas.
displaycnt_left whileprintingrecords; If numbervar cnt < 42 then totext(cnt,0,"")
diplaycnt_right which is whilepriningrecords; If numbervar cnt
>42 then to text(cnt,0,"").
The numbervar cnt ;totext always prints in the left column. It desirable to print at the end of the report. So if the last record in
the report is in the left column, it should print there. However, if the
last record is in the right column it should print at the end of that
column.
The above two formulas in the footer do as they should but the
placement is a problem. Can't seem to figure how to show at the end of
the right column.
Thanks
Edited by kimt - 01 Jul 2011 at 2:49am