Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nedcliqs
Contributor III
Contributor III

Sum of Rows

Hi Community

I have rows of data for an item but from different sales orders

Since the item description is the same, i want one line (in a straight or pivot table)  that will give me the a total sum for this itemSumRows.JPG

The correct quantity for the above should be 36

May you please help  on how i can have something like (Using a calculation)

BOMITEM_Description                    TOTALQUANTITY

Zipper Bag                                  36

12 Replies
Anil_Babu_Samineni

If you have only one dimension and that dimension used for aggr in measure you will always get 6.00

Use document number field also within the aggregation to work

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
nedcliqs
Contributor III
Contributor III
Author

Thank you very much @  jean-baptiste‌, the Aggregation function. Not only on the Text Object, but also on the Straight and Pivot tables

nedcliqs
Contributor III
Contributor III
Author

sum( AGGR(sum(BOMITEMQty),[Document No_]) ) as suggested by @ Jean-Baptiste RENAULTworked

Thank you all for your help.