Razor1973
Programmer
- Jul 6, 2006
- 16
This is an extremelly simplified model of my environment, but should explain my problem.
I basically have the following fields in my table:
I want to create a cross-tab that has Employee as a row header (no problem), Year as a column header (no problem), and then, for every year, I want to see Sales and --here comes the problem-- the growth rate based on the previous year.
This is what my report should look like:
In this example, no Growth is shown in the first year, as there is nothing to compare to (it would be ideal if I could hide the Growh column altogether) and Susan was no longer an employee in 2006.
Any feedback would be greatly appreciated.
Thanks in advance!
I basically have the following fields in my table:
Code:
Year (numeric)
Employee (text)
Sales (numeric)
I want to create a cross-tab that has Employee as a row header (no problem), Year as a column header (no problem), and then, for every year, I want to see Sales and --here comes the problem-- the growth rate based on the previous year.
This is what my report should look like:
Code:
2004 2005 2006
Sales Growth Sales Growth Sales Growth
John 100 N/A 150 50% 100 -33%
Susan 200 N/A 200 0%
In this example, no Growth is shown in the first year, as there is nothing to compare to (it would be ideal if I could hide the Growh column altogether) and Susan was no longer an employee in 2006.
Any feedback would be greatly appreciated.
Thanks in advance!