Hi All
cr 9.0
ms sql
i have a cross tab and with a start date and end date
if the user select 12 months it expands more than one page
how can i limit to 12 months per page and the rest on the next page
hi
creetd a group base ona formula quater
so display 3 months per page and does not expand on a second page
@Qtr_Page
If (DatePart("q", {TRANSACTION_HISTORY.POSTING_DATE})) =1 then "QT1"
else
If (DatePart("q", {TRANSACTION_HISTORY.POSTING_DATE})) = 2 then "QT2"
else
If (DatePart("q", {TRANSACTION_HISTORY.POSTING_DATE})) =3 then "QT3"
else
If (DatePart("q", {TRANSACTION_HISTORY.POSTING_DATE})) =4 then "QT4"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.