hanchilicious
Programmer
Hi there,
I have an XI report on SQL Server, querying a rolling years worth of data. I'm really only interested in this calendar year for about 95% of the report, but there are two or three columns where I have to work out year on year growth and things like that, which require doing calculations on a larger subset of data than I'm actually displaying.
The report is kinda like this:
The issue I have is that in the group tree index, I have the nodes POW, BAM, and SHAZAM, which is great, but I also have KABLOOIE. KABLOOIE shouldn't be in this group because it operates from LONDON these days. But the reason it's in the tree is because last year it was based in NY.
What I need to do is only group by guys who have been operating from a region THIS YEAR only.
Other than writing a view or SP, which I am not authorised to do, is there a way to achieve this in the front end?
Thanks!
I have an XI report on SQL Server, querying a rolling years worth of data. I'm really only interested in this calendar year for about 95% of the report, but there are two or three columns where I have to work out year on year growth and things like that, which require doing calculations on a larger subset of data than I'm actually displaying.
The report is kinda like this:
Code:
NEW YORK
Seller Q1 Q2 Q3 Q4 LYQ2 LY%
------ -- -- -- -- ---- ---
POW 12 24 24 24 12 200
BAM 8 14 20 26 14 100
SHAZAM 6 6 8 8 - -
What I need to do is only group by guys who have been operating from a region THIS YEAR only.
Other than writing a view or SP, which I am not authorised to do, is there a way to achieve this in the front end?
Thanks!