Hi,
I have a requirement in which i need to have different aggregation for rows and columns in cross tab. for eg the usual cross tab report would be like this:
      Product A  Product B  Product C Total
 2004   20        30        50     100
 2005   20        35        45     100
 Total   40        65        95    200
But i want the same cross tab to have a difference in aggregation in rows level and addition in column level. The Same Cross tab would then look like:
      Product A  Product B  Product C Total
 2004   20        30        50      0
 2005   20        35        45    -10
 Total   40        65        95    -10
Notice the column aggregation is total and row aggregation is difference. How shall i do this in Cross Tab or any other ways.
Srik