I have my cross tab grouped by month as the column headings, and I want to calculate a % change from month to month. Is there any way to compare values that are side by side in a cross-tab? Thanks in advance.
I think you would have to use a manual crosstab to accomplish this. There are FAQs about how to go about this, but basically you would group on your row field, and then create a series of formulas for your column fields, as in:
//{@Jan} to be placed in the detail section:
if month({table.date}) = 1 then {table.amount}
//{@Feb}:
if month({table.date}) = 2 then {table.amount}
Then you would insert a summary (sum) on each of these formulas and suppress the detail section. Let's say your group is based on {table.ID}. Then to get the change from the previous month, you would create a formula like:
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.