Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
ThijsM
Contributor
Contributor

SUM all materials per warehouse

I want to SUM all the materials corrections in euro's for every warehouse.

I tried:  PRICE_PERPIECE*Sum(AMOUNTCORRECTIONS) on material level and it works perfectly fine,

But on warehouse level the calculations won't succeed.

For instance a warehouse has 2 materials.

Warehouse 1:

Material 1:

AMOUNTCORRECTIONS = 2 pieces

PRICE_PERPIECE               = 6 euro's

TOTAL 12 euro's

Material 2:

AMOUNTCORRECTIONS = 2 pieces

PRICE_PERPIECE               = 100 euro's

TOTAL 200 euro's

I want to sum per  warehouse and get for instance 212 euro for warehouse 1

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like below

Sum(PRICE_PERPIECE*AMOUNTCORRECTIONS)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI

Try like below

Sum(PRICE_PERPIECE*AMOUNTCORRECTIONS)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
ThijsM
Contributor
Contributor
Author

Thankyou!!!!!!