Hi,
i would like to group data in a container. Is it somehow possible?
Here is in the detail what I want: I have a table query with the grouping:
while select sum(TaxBaseAmount) from tempTable1 group by TaxDirection, TaxCode { a = TaxBaseAmount; // do other things }
I would like to replace looping through this table with the container that I built earlier.
The problem is that I need grouped values and not single values:
Incoming | A11 | 10 |
Incoming | B22 | 11 |
Incoming | A11 | 12 |
Incoming | C33 | 13 |
So as a result set I need eventually the sum lines with "Incoming" + "A11" = 22!
Is there a possibility? It is AX 4.0!
Thanks a lot!
*This post is locked for comments