I have a crosstab that look like this:
(Credit card type) By Charge Return Totals
AMEX 1000 500 1500
VISA 2000 600 2600
MC 3000 400 3400
Totals 6000 1050 7050
I would like to get a row which substracts 6000 - 1050 = 4950. Substracting grand totals from by charge and return.
I was not able to do this. This is on my report footer. I created a formula:
maximum(transactionamount,transactioncode) - minimum(transactionamount,transactioncode)
This gives me 3 values of difference in the transaction code but when I try to edit this formula to have summary:
maximum (Sum({transactionamount,transactioncode})) - minimum(Sum({transactionamount,transactioncode}))
It says this field cannot be summarized.
Either case I just want to simply subtract grand total (By Charge) - grand total ( Return) or by using the formula.
Please help how can i acheive this by either case?
Your help will be appreciated.
(Credit card type) By Charge Return Totals
AMEX 1000 500 1500
VISA 2000 600 2600
MC 3000 400 3400
Totals 6000 1050 7050
I would like to get a row which substracts 6000 - 1050 = 4950. Substracting grand totals from by charge and return.
I was not able to do this. This is on my report footer. I created a formula:
maximum(transactionamount,transactioncode) - minimum(transactionamount,transactioncode)
This gives me 3 values of difference in the transaction code but when I try to edit this formula to have summary:
maximum (Sum({transactionamount,transactioncode})) - minimum(Sum({transactionamount,transactioncode}))
It says this field cannot be summarized.
Either case I just want to simply subtract grand total (By Charge) - grand total ( Return) or by using the formula.
Please help how can i acheive this by either case?
Your help will be appreciated.