Forum Discussion
jboschee34
2 years agoFrequent Visitor
Calculate Sum Issue per row
I have multiple rows with the same order number but different products ship at different times. How do I get the total sale amount to be on the each row of the same order number? My goal is to have...
- 2 years ago
Try the following:
Total = CALCULATE(SUM([Amount]), ALLEXCEPT(Table, [Order]))
vicky_
2 years agoSuper User
Try the following:
Total = CALCULATE(SUM([Amount]), ALLEXCEPT(Table, [Order]))
- jboschee342 years agoFrequent Visitor
PERFECT!!!!! vicky_ Thank you! The ALLEXCEPT was what I was missing!