I don’ believe it is possible through Quick Report, you must do it via Business Report. Thanks
hi @chajash , you cannot create grand total on quick report, instead you can do that in SQL query. please refer the following link. Hope this helps.
https://community.oracle.com/tech/developers/discussion/2329567/how-to-create-a-grand-total
Hi @chajash ,
It is possible through quick report (need to use ‘UNION ALL’ and ‘WITH’ clause). I have done that before and it was working.
WITH T AS
(SELECT PROD_FAMILY, NO_of_Parts, Total_inv_value from view1)
SELECT * FROM T
UNION ALL
SELECT SUM("Total_inv_value"),'TOTAL','' FROM T
Best Regards,
Hari
Got it to work using Grouping Sets
Works in the quick report as well.
SELECT
prod_family,
count(prod_family)as number_of_parts,
sum(extended) as total_inventory_value
FROM
agr_rep_inv_status
WHERE
frequency_class LIKE '&Frequency_Class'
GROUP BY grouping SETS
((),(prod_family))
Order by grouping
(prod_family)