Hi everyone
I have one master table with the following structure
incm_id Category SubCategory
1001 Expenses A
1002 Expenses B
1003 Income C
1004 Income D
I have a child table where i am capturing amount value for the above table and structure is something like
id fk_incm_id Amount
10001 1001 25
10002 1002 30
10003 1003 40
10004 1004 50
Now using Discoverer plus i need to show this information which i am able to do
But i then need to show total where i must deduct the values of expenses from income (i.e. Income - Expense)
I tried using decode to make the values of expenses negative but i dont want the values to be displayed as negative and still able to achieve my task
Please help me if there is a way out