ashishjain
Programmer
I am making a report in which i have to find sum based on items and as well as summary sum also. when i finding sum of group item i have to put some condtion but i am not able to do that. I need Report data like this:
Item Transaction Report
Item1 Arrival 50
Item1 Arrival 20
Item1 Issue 30
Item1 sum 40
Item2 Arrival 40
Item2 Arrival 20
Item2 Issue 30
Item2 sum 30
Total 70
Here i am using sum({item.Qty},{item.item_cd}) to find group sum and for Toal i am using sum({item.qty}) for Total
but its not giving correct output what i want.
Item Transaction Report
Item1 Arrival 50
Item1 Arrival 20
Item1 Issue 30
Item1 sum 40
Item2 Arrival 40
Item2 Arrival 20
Item2 Issue 30
Item2 sum 30
Total 70
Here i am using sum({item.Qty},{item.item_cd}) to find group sum and for Toal i am using sum({item.qty}) for Total
but its not giving correct output what i want.