barefoottraveler
Programmer
I am working with Crystal v9. I have Oracle 10g datasource. Trying to "insert a blank page" after page one of the report for duplex printing. I have the following formula in in Section Expert.Page Header/Footer.Suppress:
if remainder (pagenumber,2) = 0 then 'even page
formula = true
else
formula = false
end if
This formula successfully suppresses the header/footer but I am unable to do the same with the detail section. The detail section always leaves one row of data on the even numbered pages.
Anyone have insight on how to "push" detail rows to odd numbered pages only??
if remainder (pagenumber,2) = 0 then 'even page
formula = true
else
formula = false
end if
This formula successfully suppresses the header/footer but I am unable to do the same with the detail section. The detail section always leaves one row of data on the even numbered pages.
Anyone have insight on how to "push" detail rows to odd numbered pages only??