Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a staraight table with the following fields and i need to display the difference of
sum(totalamaunt) where catogay cost and
sum(totalamount) where catogary Payable
Thanks in advance
Hi,
Remove the dimension Category and add this expressions.
1. Sum({<Category = {"Costs"}>}TotalAMount)
2. Sum({<Category = {"Payable"}>}TotalAMount)
3. Column(1) - Column(2)
Regards,
Kaushik Solanki
Hi Kaushik Solanki,
It Works here is my final Script
=(Sum({<Category={'Costs'}>} [Total (Amount)]) - Sum({<Category={'Revenue'}>} [Total (Amount)]))
Regards
One more question what if i need to add one more condition like the month should be may?
Regards
HI,
Then it will be something like this.
Sum({<Category = {"Costs"},Month = {"May"}>}TotalAMount)
Regards,
Kaushik Solanki