Page 1 of 1

Create new page in report based off of a value

Posted: Thu Jan 07, 2016 10:42 pm
by withnoe
Below is my simple sql

Code: Select all

select cast (month as int)||'/'||cast (day as int) ||'/'|| cast (year as int) Date,  transactionNumber, 
'$'||printf("%.2f", amount) as Amount
from alldata
where substr (date,1,4) = '2015'
and (transactionNumber like '1%'
or transactionNumber like '2%')
order by transactionNumber, year, month, day

basically I want a new page to be created every time the transactionNumber changes.  How can I do that?

Re: Create new page in report based off of a value

Posted: Fri Jan 08, 2016 2:21 pm
by Nikolay
The solution is too complex...
I think somthing like this:
http://www.hongkiat.com/blog/css3-page-break/