Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Add a Total Row in BI publisher

Linda_SnaniJul 12 2018 — edited Jul 13 2018

Hello,

I have a query that displays a certain sums grouped by user_id :

select ms.user_id

  , nvl(sum(ms.mon\_curr),0)

  , nvl(sum(ms.mon\_prev),0)

from monsales ms

where ms.yyyy = :YEAR

and ms.mon  = :MONTH

and ms.rep\_name = :REP\_NAME

group by ms.user_id

I built BI report and would like to show the total sum for my columns. I added a new line on the bottom and for each column, I inserted a field where I selected the sum Function:

pastedImage_3.png

and in the Advanced tab:

pastedImage_4.png

It is showing the total sum for each user_id and not the grand Total. How can I specify the total outside each group loop?

Thanks.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 10 2018
Added on Jul 12 2018
2 comments
3,546 views