Particular column sum values to be hide [message #431123] |
Sun, 15 November 2009 12:29 |
|
In the above image you can see the live previewer for the below query
SELECT d.dname, e.job, SUM (e.sal)
FROM emp1 e, dept1 d
WHERE e.deptno = d.deptno
and job in ('ANALYST','CLERK')
GROUP BY d.dname,
e.job
The above report done in matrix style..
Dname as row,
Job as column
and sum(sal) as cell fields..
I wants to hide the sum(sal)values in the cell of the matrix for the clerk column.
Is it possible to do from report builder since i dont wants to do from query ?..
Thanks
Syed.
-
Attachment: CK.JPG
(Size: 20.79KB, Downloaded 1762 times)
[Updated on: Sun, 15 November 2009 13:24] Report message to a moderator
|
|
|
|
|
|